themodelindex-mcp 1.0.0
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 +72 -0
- package/data.json +1 -0
- package/index.js +226 -0
- package/package.json +40 -0
package/README.md
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
# TheModelIndex MCP Server
|
|
2
|
+
|
|
3
|
+
Query the most comprehensive AI model, tool, and agent directory directly from your AI assistant.
|
|
4
|
+
|
|
5
|
+
## What it does
|
|
6
|
+
|
|
7
|
+
Gives AI assistants (Claude, ChatGPT, etc.) access to **347+ AI models**, **55+ tools**, and **40+ agents** from [TheModelIndex.ai](https://themodelindex.ai).
|
|
8
|
+
|
|
9
|
+
## Tools
|
|
10
|
+
|
|
11
|
+
| Tool | Description |
|
|
12
|
+
|------|-------------|
|
|
13
|
+
| `search_models` | Search AI models by name, provider, category, or capability |
|
|
14
|
+
| `search_tools` | Search AI tools by name or category |
|
|
15
|
+
| `search_agents` | Search AI agents by name or capability |
|
|
16
|
+
| `compare_models` | Compare two models side by side (specs, pricing) |
|
|
17
|
+
| `get_pricing` | Get model API pricing sorted by cost |
|
|
18
|
+
| `recommend` | Get recommendations for a specific use case |
|
|
19
|
+
|
|
20
|
+
## Example Queries
|
|
21
|
+
|
|
22
|
+
- "Search for the best open source reasoning models"
|
|
23
|
+
- "Compare Claude 4 Opus vs GPT-5"
|
|
24
|
+
- "What's the cheapest model for code generation?"
|
|
25
|
+
- "Find AI agents for browser automation"
|
|
26
|
+
- "Recommend tools for a startup building a SaaS"
|
|
27
|
+
|
|
28
|
+
## Installation
|
|
29
|
+
|
|
30
|
+
### Claude Desktop
|
|
31
|
+
|
|
32
|
+
Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
|
|
33
|
+
|
|
34
|
+
```json
|
|
35
|
+
{
|
|
36
|
+
"mcpServers": {
|
|
37
|
+
"themodelindex": {
|
|
38
|
+
"command": "node",
|
|
39
|
+
"args": ["/path/to/themodelindex/mcp-server/index.js"]
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
### npx (when published)
|
|
46
|
+
|
|
47
|
+
```json
|
|
48
|
+
{
|
|
49
|
+
"mcpServers": {
|
|
50
|
+
"themodelindex": {
|
|
51
|
+
"command": "npx",
|
|
52
|
+
"args": ["-y", "themodelindex-mcp"]
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
## Data
|
|
59
|
+
|
|
60
|
+
- **347+ AI models** with specs, pricing, and capabilities
|
|
61
|
+
- **55+ AI tools** with features and pricing
|
|
62
|
+
- **40+ AI agents** with capabilities and platforms
|
|
63
|
+
- Data from [TheModelIndex.ai](https://themodelindex.ai)
|
|
64
|
+
- Updated regularly
|
|
65
|
+
|
|
66
|
+
## Links
|
|
67
|
+
|
|
68
|
+
- Website: [themodelindex.ai](https://themodelindex.ai)
|
|
69
|
+
- Models: [themodelindex.ai/models](https://themodelindex.ai)
|
|
70
|
+
- Tools: [themodelindex.ai/tools](https://themodelindex.ai/tools)
|
|
71
|
+
- Agents: [themodelindex.ai/agents](https://themodelindex.ai/agents)
|
|
72
|
+
- Cost Calculator: [themodelindex.ai/tools/cost-calculator](https://themodelindex.ai/tools/cost-calculator)
|