@index9/mcp 1.0.3 → 1.0.5

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 +24 -30
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -1,18 +1,20 @@
1
1
  # @index9/mcp
2
2
 
3
- [![npm version](https://badge.fury.io/js/%40index9%2Fmcp.svg)](https://badge.fury.io/js/%40index9%2Fmcp)
3
+ [![npm version](https://badge.fury.io/js/@index9%2Fmcp.svg)](https://badge.fury.io/js/@index9%2Fmcp)
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
5
 
6
- Real-time model intelligence for your AI assistant. Search 1000+ models, compare pricing and capabilities, test performance—all with current data, zero cost.
6
+ [📦 **Install**](#quick-start) [🐛 **Issues**](https://github.com/index9-org/mcp/issues)
7
+
8
+ Real-time model intelligence for your AI assistant. Search 1200+ models, compare pricing and capabilities, test performance—all with current data, zero cost.
7
9
 
8
10
  ## What You Get
9
11
 
10
- Your AI assistant can discover, compare, and recommend models with live data:
12
+ Your AI assistant gets live model intelligence for smarter recommendations:
11
13
 
12
- - **Find models** by capability, price, or use case, with semantic search across 1200+ options
13
- - **Compare side-by-side** with current pricing, context windows, and specifications
14
- - **Get recommendations** tailored to your specific needs (coding, reasoning, vision, budget)
15
- - **Test performance** with live API calls before committing to a model
14
+ - **Search models** by capability, price, or modality across 1200+ options instantly
15
+ - **Compare models** side-by-side with current pricing and context windows
16
+ - **Get recommendations** tailored to your use case, budget, and requirements
17
+ - **Test models** with real API calls to see latency and behavior before you commit
16
18
 
17
19
  ## Quick Start
18
20
 
@@ -55,38 +57,30 @@ See [installation guide](https://www.index9.dev/#installation) for Claude Deskto
55
57
 
56
58
  ### Testing Models (Optional)
57
59
 
58
- To use the `test_model` tool, add your OpenRouter API key:
60
+ To enable live model testing, add your OpenRouter API key from [openrouter.ai/keys](https://openrouter.ai/keys) to your MCP config. Charges go directly to your OpenRouter account.
59
61
 
60
- ```json
61
- {
62
- "mcpServers": {
63
- "index9": {
64
- "command": "npx",
65
- "args": ["@index9/mcp"],
66
- "env": {
67
- "OPEN_ROUTER_API_KEY": "your-key-here"
68
- }
69
- }
70
- }
71
- }
72
- ```
62
+ ## Available Tools
73
63
 
74
- Get your API key from [openrouter.ai/keys](https://openrouter.ai/keys).
64
+ - **`list_models`** - Filter models by provider, context, pricing, capabilities, and modality
65
+ - **`search_models`** - Natural language search across all models
66
+ - **`get_model`** - Get complete model specs and details
67
+ - **`compare_models`** - Side-by-side comparison of up to 10 models
68
+ - **`recommend_model`** - AI-powered recommendations for your use case
69
+ - **`test_model`** - Live API testing with latency and cost estimates (requires API key)
75
70
 
76
- ## Available Tools
71
+ ## Data Sources
77
72
 
78
- - **`list_models`** - List models with optional filters (provider, context, modality, pricing, capabilities)
79
- - **`search_models`** - Semantic search across models using natural language
80
- - **`get_model`** - Get complete model details and specifications
81
- - **`compare_models`** - Compare 2-10 models side-by-side
82
- - **`recommend_model`** - Get AI-powered model recommendations for use cases
83
- - **`test_model`** - Run live tests against models via OpenRouter API (requires API key)
73
+ Data sourced from [OpenRouter](https://openrouter.ai) and [models.dev](https://models.dev).
84
74
 
85
75
  ## License
86
76
 
87
77
  MIT © [Index9](https://index9.dev)
88
78
 
79
+ ## Links
80
+
81
+ - [🌐 Website](https://index9.dev) - AI model registry and testing platform
82
+ - [🐛 Issues](https://github.com/index9-org/mcp/issues) - Report bugs or request features
83
+
89
84
  ## Related
90
85
 
91
- - [Index9](https://index9.dev) - AI model registry and testing platform
92
86
  - [Model Context Protocol](https://modelcontextprotocol.io/) - The protocol this server implements
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@index9/mcp",
3
- "version": "1.0.3",
4
- "description": "Give your AI assistant up-to-date model knowledge. 1000+ models with real-time pricing, context windows, and capabilities. Latest data, instant responses, zero cost.",
3
+ "version": "1.0.5",
4
+ "description": "Give your AI assistant up-to-date model knowledge. 1200+ models with real-time pricing, context windows, and capabilities. Latest data, instant responses, zero cost.",
5
5
  "keywords": [
6
6
  "mcp",
7
7
  "model-context-protocol",
@@ -36,7 +36,7 @@
36
36
  "index9": "./dist/index.js"
37
37
  },
38
38
  "dependencies": {
39
- "@modelcontextprotocol/sdk": "^1.24.2",
39
+ "@modelcontextprotocol/sdk": "^1.24.3",
40
40
  "axios": "^1.13.2",
41
41
  "pino": "^10.1.0",
42
42
  "zod": "^4.1.13"