@moorchehai/mcp 1.3.0 → 1.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +10 -36
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -208,6 +208,7 @@ The Moorcheh MCP server provides tools for:
208
208
  ### Data Tools
209
209
  - **`upload-text`**: Upload text documents to a namespace
210
210
  - **`upload-vectors`**: Upload vector embeddings to a namespace
211
+ - **`upload-file`**: Upload files directly to a text-type namespace (supports .pdf, .docx, .xlsx, .json, .txt, .csv, .md, max 10MB)
211
212
  - **`get-data`**: Retrieve text documents by ID from text namespaces
212
213
  - **`delete-data`**: Remove specific data items from a namespace
213
214
 
@@ -219,11 +220,14 @@ The Moorcheh MCP server provides tools for:
219
220
 
220
221
  | Model ID | Name | Provider | Description |
221
222
  |----------|------|----------|-------------|
222
- | `anthropic.claude-3-7-sonnet-20250219-v1:0` | Claude 3.7 Sonnet | Anthropic | Latest Claude model with enhanced capabilities |
223
- | `anthropic.claude-sonnet-4-20250514-v1:0` | Claude Sonnet 4 | Anthropic | Latest Claude model with enhanced capabilities |
224
- | `meta.llama4-maverick-17b-instruct-v1:0` | Llama 4 Maverick | Meta | Latest Llama model optimized for instruction following |
225
- | `meta.llama3-3-70b-instruct-v1:0` | Llama 3 70B | Meta | Large Llama model with strong general capabilities |
226
- | `deepseek.r1-v1:0` | DeepSeek-R1 | DeepSeek | Specialized model for research and analysis |
223
+ | `anthropic.claude-sonnet-4-20250514-v1:0` | Claude Sonnet 4 | Anthropic | Hybrid reasoning, extended thinking, efficient code generation |
224
+ | `anthropic.claude-sonnet-4-5-20250929-v1:0` | Claude Sonnet 4.5 | Anthropic | Latest Claude model with enhanced capabilities and agentic search |
225
+ | `meta.llama4-maverick-17b-instruct-v1:0` | Llama 4 Maverick 17B | Meta | 1M token context, fine tuning, text summarization, function calling |
226
+ | `meta.llama3-3-70b-instruct-v1:0` | Llama 3.3 70B | Meta | Advanced reasoning and decision making capabilities |
227
+ | `amazon.nova-pro-v1:0` | Amazon Nova Pro | Amazon | 300K context, chat optimized, complex reasoning, math |
228
+ | `deepseek.r1-v1:0` | DeepSeek R1 | DeepSeek | Advanced reasoning and code generation |
229
+ | `openai.gpt-oss-120b-1:0` | OpenAI GPT OSS 120B | OpenAI | Hybrid reasoning, extended thinking, efficient research |
230
+ | `qwen.qwen3-32b-v1:0` | Qwen 3 32B | Qwen | Text generation and code generation |
227
231
 
228
232
  ## Prerequisites
229
233
 
@@ -289,34 +293,4 @@ We welcome contributions! Please feel free to submit a Pull Request.
289
293
 
290
294
  ## Changelog
291
295
 
292
- ### v1.2.2
293
- - Package Name: Updated to `@moorchehai/mcp` for official Moorcheh organization
294
- - NPX Support: Added CLI wrapper for seamless `npx -y @moorchehai/mcp` execution
295
- - Package Structure: Configured for npm registry publishing
296
- - CLI Features: Added help, version commands and API key validation
297
- - User Experience: Improved error messages and installation guidance
298
-
299
- ### v1.2.1
300
- - NPX Support: Added CLI wrapper for seamless `npx -y @moorcheh/mcp` execution
301
- - Package Structure: Configured for npm registry publishing as `@moorcheh/mcp`
302
- - CLI Features: Added help, version commands and API key validation
303
- - User Experience: Improved error messages and installation guidance
304
-
305
- ### v1.2.0
306
- - New tool: `get-data` to fetch documents by ID from text namespaces (POST /namespaces/{name}/documents/get)
307
- - Reliability: Static documentation resources to avoid invalid URI errors in MCP clients
308
- - Windows compatibility: Use ';' for command chaining in PowerShell
309
- - Stability: Ensured stdout handling respects MCP JSON-RPC framing
310
-
311
- ### v1.1.0
312
- - Enhanced prompt system with dynamic content generation
313
- - Added comprehensive argument schemas with Zod validation
314
- - Improved search optimization, data organization, and AI answer setup prompts
315
- - Updated prompt registration to use new MCP SDK signature
316
- - Better user guidance and interactive prompt responses
317
-
318
- ### v1.0.0
319
- - Initial release with MCP server functionality
320
- - Support for text and vector operations
321
- - AI-powered answer generation
322
- - Comprehensive documentation
296
+ For a detailed list of changes, see [CHANGELOG.md](CHANGELOG.md).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moorchehai/mcp",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "Moorcheh MCP Server with completable functionality for AI-powered search and answer operations",
5
5
  "main": "src/server/index.js",
6
6
  "type": "module",
@@ -36,8 +36,8 @@
36
36
  "author": "Moorcheh Team",
37
37
  "license": "Apache-2.0",
38
38
  "dependencies": {
39
- "@modelcontextprotocol/sdk": "^1.17.0",
40
- "axios": "^1.11.0",
39
+ "@modelcontextprotocol/sdk": "^1.25.2",
40
+ "axios": "^1.12.0",
41
41
  "form-data": "^4.0.5",
42
42
  "zod": "^3.22.4"
43
43
  },