From 3d6491fe144bba465dd1f673164871ef53b86f95 Mon Sep 17 00:00:00 2001 From: chris7iu Date: Thu, 25 Dec 2025 16:07:20 +0800 Subject: [PATCH] Rename package from @qverisai/sdk to @qverisai/mcp, and adjust related documentation and URLs accordingly. --- README.md | 12 ++++++------ package-lock.json | 8 ++++---- package.json | 8 ++++---- src/index.ts | 4 ++-- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index b9470db..a62840a 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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" } @@ -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" } @@ -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 @@ -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 diff --git a/package-lock.json b/package-lock.json index 3f3a976..ffa44d3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { - "name": "@qverisai/sdk", - "version": "0.1.1", + "name": "@qverisai/mcp", + "version": "0.1.2", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "@qverisai/sdk", - "version": "0.1.1", + "name": "@qverisai/mcp", + "version": "0.1.2", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^1.0.0", diff --git a/package.json b/package.json index daf0cf3..eb3f3c8 100644 --- a/package.json +++ b/package.json @@ -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": [ @@ -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", diff --git a/src/index.ts b/src/index.ts index 0034cd0..a88fe97 100644 --- a/src/index.ts +++ b/src/index.ts @@ -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 @@ -16,7 +16,7 @@ * "mcpServers": { * "qveris": { * "command": "npx", - * "args": ["@qverisai/sdk"], + * "args": ["@qverisai/mcp"], * "env": { "QVERIS_API_KEY": "your-api-key" } * } * }