Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2025 QverisAI
Copyright (c) 2025 QVerisAI

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# @qverisai/mcp

Official Qveris MCP Server SDK — Dynamically search and execute tools via natural language.
Official QVeris MCP Server — Dynamically search and execute tools via natural language.

[![npm version](https://img.shields.io/npm/v/@qverisai/mcp.svg)](https://www.npmjs.com/package/@qverisai/mcp)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

## Overview

This SDK provides a [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) server that enables LLMs to discover and execute third-party tools through the Qveris API. With three simple tools, your AI assistant can:
This SDK provides a [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) server that enables LLMs to discover and execute third-party tools through the QVeris API. With three simple tools, your AI assistant can:

- **Search** for tools using natural language queries
- **Get** detailed information about specific tools by their IDs
Expand All @@ -17,11 +17,11 @@ This SDK provides a [Model Context Protocol (MCP)](https://modelcontextprotocol.

### 1. Get Your API Key

Visit [Qveris](https://qveris.ai) to get your API key.
Visit [QVeris](https://qveris.ai) to get your API key.

### 2. Configure Your MCP Client

Add the Qveris server to your MCP client configuration:
Add the QVeris server to your MCP client configuration:

**Claude Desktop** (`claude_desktop_config.json`):

Expand Down Expand Up @@ -181,12 +181,12 @@ The `full_content_file_url` is valid for 120 minutes.

| Variable | Required | Description |
|----------|----------|-------------|
| `QVERIS_API_KEY` | ✓ | Your Qveris API key |
| `QVERIS_API_KEY` | ✓ | Your QVeris API key |

## Requirements

- Node.js 18.0.0 or higher
- A valid Qveris API key
- A valid QVeris API key

## Development

Expand All @@ -207,7 +207,7 @@ QVERIS_API_KEY=your-key node dist/index.js

## License

MIT © [QverisAI](https://github.com/qverisai)
MIT © [QVerisAI](https://github.com/qverisai)

## Support

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@qverisai/mcp",
"version": "0.1.2",
"description": "Official Qveris AI MCP Server SDK - Search and execute tools via natural language",
"description": "Official QVeris AI MCP Server SDK - Search and execute tools via natural language",
"keywords": [
"qveris",
"mcp",
Expand All @@ -10,7 +10,7 @@
"tools",
"sdk"
],
"author": "QverisAI",
"author": "QVerisAI",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
1 change: 0 additions & 1 deletion src/tools/execute.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ describe('execute_tool', () => {
describe('executeToolSchema', () => {
it('should have tool_id, search_id, params_to_tool as required', () => {
expect(executeToolSchema.required).toContain('tool_id');
expect(executeToolSchema.required).toContain('search_id');
expect(executeToolSchema.required).toContain('params_to_tool');
});

Expand Down
2 changes: 1 addition & 1 deletion src/tools/execute.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export const executeToolSchema = {
default: 20480,
},
},
required: ['tool_id', 'search_id', 'params_to_tool'],
required: ['tool_id', 'params_to_tool'],
};

/**
Expand Down