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
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# @qverisai/sdk
# @qverisai/mcp

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

[![npm version](https://img.shields.io/npm/v/@qverisai/sdk.svg)](https://www.npmjs.com/package/@qverisai/sdk)
[![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
Expand Down Expand Up @@ -30,7 +30,7 @@ Add the Qveris server to your MCP client configuration:
"mcpServers": {
"qveris": {
"command": "npx",
"args": ["@qverisai/sdk"],
"args": ["@qverisai/mcp"],
"env": {
"QVERIS_API_KEY": "your-api-key-here"
}
Expand All @@ -46,7 +46,7 @@ Add the Qveris server to your MCP client configuration:
"mcpServers": {
"qveris": {
"command": "npx",
"args": ["@qverisai/sdk"],
"args": ["@qverisai/mcp"],
"env": {
"QVERIS_API_KEY": "your-api-key-here"
}
Expand Down Expand Up @@ -192,7 +192,7 @@ The `full_content_file_url` is valid for 120 minutes.

```bash
# Clone the repository
git clone https://github.com/qverisai/sdk.git
git clone https://github.com/qverisai/mcp.git
cd sdk

# Install dependencies
Expand All @@ -211,6 +211,6 @@ MIT © [QverisAI](https://github.com/qverisai)

## Support

- 🐛 [Issue Tracker](https://github.com/qverisai/sdk/issues)
- 🐛 [Issue Tracker](https://github.com/qverisai/mcp/issues)
- 💬 Contact: contact@qveris.ai

8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@qverisai/sdk",
"name": "@qverisai/mcp",
"version": "0.1.2",
"description": "Official Qveris AI MCP Server SDK - Search and execute tools via natural language",
"keywords": [
Expand All @@ -14,11 +14,11 @@
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/qverisai/sdk"
"url": "https://github.com/qverisai/mcp"
},
"homepage": "https://github.com/qverisai/sdk#readme",
"homepage": "https://github.com/qverisai/mcp#readme",
"bugs": {
"url": "https://github.com/qverisai/sdk/issues"
"url": "https://github.com/qverisai/mcp/issues"
},
"type": "module",
"main": "dist/index.js",
Expand Down
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* tool discovery and execution API. Enables LLMs to dynamically search for
* and execute third-party tools via natural language.
*
* @module @qverisai/sdk
* @module @qverisai/mcp
* @version 0.1.0
*
* @example
Expand All @@ -16,7 +16,7 @@
* "mcpServers": {
* "qveris": {
* "command": "npx",
* "args": ["@qverisai/sdk"],
* "args": ["@qverisai/mcp"],
* "env": { "QVERIS_API_KEY": "your-api-key" }
* }
* }
Expand Down