@index9/mcp 1.0.24 → 1.0.30

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 +21 -19
  2. package/package.json +4 -6
package/README.md CHANGED
@@ -3,9 +3,9 @@
3
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
- MCP server that gives AI assistants up-to-date model data replacing outdated training knowledge.
6
+ Your AI assistant’s model knowledge is outdated. **index9 fixes that.**
7
7
 
8
- Pricing, context limits, capabilities, and test metrics for 300+ models from [OpenRouter](https://openrouter.ai).
8
+ MCP server providing up-to-date pricing, context limits, and capabilities for 300+ models from [OpenRouter](https://openrouter.ai).
9
9
 
10
10
  ## Installation
11
11
 
@@ -24,24 +24,26 @@ Add to your MCP client configuration:
24
24
 
25
25
  **Where to add this:**
26
26
 
27
- | Client | Location |
28
- | -------------- | ----------------------------------------------------------------- |
29
- | Cursor | Settings → MCP → Add new global MCP server |
30
- | VS Code | Settings → MCP Servers (use `"type": "stdio"`) |
31
- | Claude Desktop | `~/Library/Application Support/Claude/claude_desktop_config.json` |
32
- | Claude Code | `claude mcp add index9 -- npx -y @index9/mcp` |
27
+ | Client | Location |
28
+ | -------------- | ------------------------------------------------------------------------- |
29
+ | Cursor | Settings → MCP → Add new global MCP server |
30
+ | VS Code | Settings → MCP Servers (use `"type": "stdio"`) |
31
+ | Claude Desktop | `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS) |
32
+ | Claude Code | `claude mcp add index9 -- npx -y @index9/mcp` |
33
33
 
34
- See [index9.dev](https://index9.dev/#installation) for other supported MCP clients.
34
+ See [index9.dev](https://index9.dev/#installation) for all supported clients.
35
35
 
36
- | Tool | Description | API Key |
37
- | ------------- | ----------------------------------------------------------------------------------------- | ------- |
38
- | `find_models` | Search models by natural language or filters (price, context, capabilities). | No |
39
- | `get_model` | Return full metadata, including pricing, context window, output limits, and capabilities. | No |
40
- | `test_model` | Send live requests via OpenRouter to compare outputs, latency, and estimated cost. | Yes |
36
+ ## Tools
37
+
38
+ | Tool | Description | API Key |
39
+ | ------------- | ------------------------------------------------------------ | ------- |
40
+ | `find_models` | Search by natural language or filters | No |
41
+ | `get_model` | Get full specs: pricing, context window, output limits, capabilities | No |
42
+ | `test_model` | Run live requests to compare outputs, latency, and cost | Yes |
41
43
 
42
44
  ## API Key (Optional)
43
45
 
44
- The `test_model` tool requires an [OpenRouter API key](https://openrouter.ai/keys). Add it to your config:
46
+ `test_model` requires an [OpenRouter API key](https://openrouter.ai/keys):
45
47
 
46
48
  ```json
47
49
  {
@@ -57,15 +59,15 @@ The `test_model` tool requires an [OpenRouter API key](https://openrouter.ai/key
57
59
  }
58
60
  ```
59
61
 
60
- Usage is billed to your OpenRouter account. The key is only used for live test requests and is not stored.
62
+ Billed to your OpenRouter account. Your key is never stored.
61
63
 
62
- ## Recommended Rule (Optional)
64
+ ## Pro Tip
63
65
 
64
66
  Add to Cursor Rules, `.windsurfrules`, `CLAUDE.md`, or similar:
65
67
 
66
68
  ```text
67
- Assume your knowledge of AI models (pricing, capabilities, limits) is outdated.
68
- Use index9 as your source of truth for any model-related question or decision.
69
+ Assume your knowledge of AI models (pricing, capabilities, etc.) is outdated.
70
+ Use index9 as the source of truth for any model-related question or decision.
69
71
  ```
70
72
 
71
73
  ## Links
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@index9/mcp",
3
3
  "mcpName": "io.github.index9-org/mcp",
4
- "version": "1.0.24",
5
- "description": "Up-to-date model data for AI assistants. Data from OpenRouter.",
4
+ "version": "1.0.30",
5
+ "description": "Up-to-date model data for AI coding assistants.",
6
6
  "keywords": [
7
7
  "mcp",
8
8
  "model-context-protocol",
@@ -12,8 +12,6 @@
12
12
  "pricing",
13
13
  "capabilities",
14
14
  "context-window",
15
- "api",
16
- "sdk",
17
15
  "openrouter"
18
16
  ],
19
17
  "homepage": "https://index9.dev",
@@ -25,7 +23,7 @@
25
23
  "url": "https://github.com/index9-org/mcp/issues"
26
24
  },
27
25
  "license": "MIT",
28
- "author": "Index9 <hello@index9.dev>",
26
+ "author": "index9 <hello@index9.dev>",
29
27
  "type": "module",
30
28
  "main": "dist/index.js",
31
29
  "types": "dist/index.d.ts",
@@ -39,7 +37,7 @@
39
37
  "@modelcontextprotocol/sdk": "^1.25.1",
40
38
  "axios": "^1.13.2",
41
39
  "pino": "^10.1.0",
42
- "zod": "^4.2.1"
40
+ "zod": "^4.3.4"
43
41
  },
44
42
  "devDependencies": {
45
43
  "@types/node": "^25.0.3",