@index9/mcp 1.0.24 → 1.0.28
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.
- package/README.md +13 -11
- package/package.json +3 -5
package/README.md
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
[](https://badge.fury.io/js/@index9%2Fmcp)
|
|
4
4
|
[](https://opensource.org/licenses/MIT)
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
Your AI assistant's model knowledge is outdated. This fixes that.
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
MCP server providing live pricing, context limits, and capabilities for 300+ models from [OpenRouter](https://openrouter.ai).
|
|
9
9
|
|
|
10
10
|
## Installation
|
|
11
11
|
|
|
@@ -31,17 +31,19 @@ Add to your MCP client configuration:
|
|
|
31
31
|
| Claude Desktop | `~/Library/Application Support/Claude/claude_desktop_config.json` |
|
|
32
32
|
| Claude Code | `claude mcp add index9 -- npx -y @index9/mcp` |
|
|
33
33
|
|
|
34
|
-
See [index9.dev](https://index9.dev/#installation) for
|
|
34
|
+
See [index9.dev](https://index9.dev/#installation) for all supported clients.
|
|
35
35
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
|
39
|
-
|
|
|
40
|
-
| `
|
|
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, 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
|
-
|
|
46
|
+
`test_model` requires an [OpenRouter API key](https://openrouter.ai/keys):
|
|
45
47
|
|
|
46
48
|
```json
|
|
47
49
|
{
|
|
@@ -57,9 +59,9 @@ The `test_model` tool requires an [OpenRouter API key](https://openrouter.ai/key
|
|
|
57
59
|
}
|
|
58
60
|
```
|
|
59
61
|
|
|
60
|
-
|
|
62
|
+
Billed to your OpenRouter account. Your key is never stored.
|
|
61
63
|
|
|
62
|
-
##
|
|
64
|
+
## Pro Tip
|
|
63
65
|
|
|
64
66
|
Add to Cursor Rules, `.windsurfrules`, `CLAUDE.md`, or similar:
|
|
65
67
|
|
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.
|
|
5
|
-
"description": "
|
|
4
|
+
"version": "1.0.28",
|
|
5
|
+
"description": "Live 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": "
|
|
26
|
+
"author": "index9 <hello@index9.dev>",
|
|
29
27
|
"type": "module",
|
|
30
28
|
"main": "dist/index.js",
|
|
31
29
|
"types": "dist/index.d.ts",
|