@toolsdk.ai/registry 1.0.122 → 1.0.123
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 +12 -12
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
|
|
3
|
-
#
|
|
3
|
+
# ToolSDK MCP Registry
|
|
4
4
|
|
|
5
5
|
**Your private, secure, and customizable MCP Registry — take full control of your tools.**
|
|
6
6
|
|
|
7
7
|
[](https://www.producthunt.com/products/toolsdk-ai)
|
|
8
8
|
|
|
9
|
-

|
|
10
|
+

|
|
11
11
|
|
|
12
12
|
🚀 **Open-source**, **production-ready**, and **developer-friendly** registry for 4108+ Model Context Protocol (MCP) servers, plugins, and AI agent tools.
|
|
13
13
|
|
|
@@ -17,9 +17,9 @@ Perfect for **AI automation**, **chatbot development**, **LLM integrations**, an
|
|
|
17
17
|
|
|
18
18
|
</div>
|
|
19
19
|
|
|
20
|
-
## 🌟 Why
|
|
20
|
+
## 🌟 Why ToolSDK MCP Registry?
|
|
21
21
|
|
|
22
|
-
**
|
|
22
|
+
**ToolSDK MCP Registry** is the most comprehensive, self-hosted registry for Model Context Protocol (MCP) servers and AI agent tools. Built for developers, teams, and enterprises who need full control over their AI infrastructure.
|
|
23
23
|
|
|
24
24
|
### 🎯 Key Features
|
|
25
25
|
|
|
@@ -55,7 +55,7 @@ This open-source registry provides:
|
|
|
55
55
|
|
|
56
56
|
- 📄 `README.md` - Human-readable documentation
|
|
57
57
|
- 📦 [npm package](https://www.npmjs.com/package/@toolsdk.ai/registry) - TypeScript/JavaScript SDK
|
|
58
|
-
- 🔗 [packages-list.json](https://toolsdk-ai.github.io/
|
|
58
|
+
- 🔗 [packages-list.json](https://toolsdk-ai.github.io/toolsdk-mcp-registry/indexes/packages-list.json) - Raw data API
|
|
59
59
|
|
|
60
60
|
---
|
|
61
61
|
|
|
@@ -68,7 +68,7 @@ This open-source registry provides:
|
|
|
68
68
|
- [📄 Submit New MCP Servers](#submit-new-mcp-servers)
|
|
69
69
|
- [📖 Development Guide](./docs/DEVELOPMENT.md)
|
|
70
70
|
- [🤝 Contributing Guide](./docs/guide.md)
|
|
71
|
-
- [⭐
|
|
71
|
+
- [⭐ ToolSDK MCP Servers](#mcp-servers)
|
|
72
72
|
|
|
73
73
|
- [Uncategorized](#uncategorized)
|
|
74
74
|
- [Aggregators](#aggregators)
|
|
@@ -148,7 +148,7 @@ curl -X POST http://localhost:3003/api/v1/packages/run \
|
|
|
148
148
|
"packageName": "@modelcontextprotocol/server-everything",
|
|
149
149
|
"toolKey": "echo",
|
|
150
150
|
"inputData": {
|
|
151
|
-
"message": "Hello from
|
|
151
|
+
"message": "Hello from ToolSDK MCP Registry!"
|
|
152
152
|
},
|
|
153
153
|
"envs": {}
|
|
154
154
|
}'
|
|
@@ -185,13 +185,13 @@ import mcpServerLists from '@toolsdk.ai/registry/indexes/packages-lists.json';
|
|
|
185
185
|
Fetch the complete MCP server registry programmatically - ideal for AI applications, integrations, and automation:
|
|
186
186
|
|
|
187
187
|
```bash
|
|
188
|
-
curl https://toolsdk-ai.github.io/
|
|
188
|
+
curl https://toolsdk-ai.github.io/toolsdk-mcp-registry/indexes/packages-list.json
|
|
189
189
|
```
|
|
190
190
|
|
|
191
191
|
```ts
|
|
192
192
|
// JavaScript/TypeScript - Fetch API
|
|
193
193
|
const mcpServers = await (
|
|
194
|
-
await fetch('https://toolsdk-ai.github.io/
|
|
194
|
+
await fetch('https://toolsdk-ai.github.io/toolsdk-mcp-registry/indexes/packages-list.json')
|
|
195
195
|
).json();
|
|
196
196
|
|
|
197
197
|
// Use for AI agent tool discovery, LLM integrations, etc.
|
|
@@ -203,7 +203,7 @@ console.log(mcpServers);
|
|
|
203
203
|
import requests
|
|
204
204
|
|
|
205
205
|
mcp_servers = requests.get(
|
|
206
|
-
'https://toolsdk-ai.github.io/
|
|
206
|
+
'https://toolsdk-ai.github.io/toolsdk-mcp-registry/indexes/packages-list.json'
|
|
207
207
|
).json()
|
|
208
208
|
|
|
209
209
|
# Perfect for LangChain, CrewAI, AutoGen integrations
|
|
@@ -239,7 +239,7 @@ Help grow the world's largest open-source MCP registry! Share your AI tools, plu
|
|
|
239
239
|
|
|
240
240
|
**2. Submit via Pull Request**
|
|
241
241
|
|
|
242
|
-
- [Fork this repository](https://github.com/toolsdk-ai/
|
|
242
|
+
- [Fork this repository](https://github.com/toolsdk-ai/toolsdk-mcp-registry/fork)
|
|
243
243
|
- Create `your-mcp-server.json` in [packages/uncategorized](./packages/uncategorized)
|
|
244
244
|
- Submit a PR and join 4108+ MCP servers!
|
|
245
245
|
|