@toolsdk.ai/registry 1.0.169 → 1.0.171

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 CHANGED
@@ -12,14 +12,14 @@
12
12
  <a href="https://github.com/toolsdk-ai/toolsdk-mcp-registry/actions/workflows/test.yaml">
13
13
  <img src="https://github.com/toolsdk-ai/toolsdk-mcp-registry/actions/workflows/test.yaml/badge.svg" alt="Build Status" />
14
14
  </a>
15
- <img src="https://img.shields.io/badge/MCP_Servers-4547-blue?style=flat-square" alt="MCP Servers Count" />
15
+ <img src="https://img.shields.io/badge/MCP_Servers-4548-blue?style=flat-square" alt="MCP Servers Count" />
16
16
  <img src="https://img.shields.io/badge/LICENSE-MIT-ff69b4?style=flat-square" alt="License" />
17
17
  <br />
18
18
  <a href="https://www.producthunt.com/products/toolsdk-ai">
19
19
  <img src="https://api.producthunt.com/widgets/embed-image/v1/top-post-badge.svg?post_id=997428&theme=light&period=daily" alt="Product Hunt" height="40" />
20
20
  </a>
21
21
 
22
- <a href="#mcp-servers">🔍 <b>Browse 4547+ Tools</b></a>
22
+ <a href="#mcp-servers">🔍 <b>Browse 4548+ Tools</b></a>
23
23
  &nbsp;&nbsp;•&nbsp;&nbsp;
24
24
  <a href="#quick-start">🐳 <b>Self-hosted</b></a>
25
25
  &nbsp;&nbsp;•&nbsp;&nbsp;
@@ -75,7 +75,7 @@ docker compose up -d
75
75
  - *See [Configuration Guide](./docs/DEVELOPMENT.md) for full details.*
76
76
 
77
77
  > [!TIP]
78
- > **Tip for Private Deployment**: This registry contains 4547+ public MCP servers. If you only need a specific subset for your private environment, you can prune the `packages/` directory.
78
+ > **Tip for Private Deployment**: This registry contains 4548+ public MCP servers. If you only need a specific subset for your private environment, you can prune the `packages/` directory.
79
79
  > 📖 See [Package Management Guide](./docs/DEVELOPMENT.md#5--package-management-for-private-deployment) for details.
80
80
 
81
81
  That's it! Your self-hosted MCP registry is now running with:
@@ -87,7 +87,7 @@ That's it! Your self-hosted MCP registry is now running with:
87
87
 
88
88
  - 🌐 **Local Web Interface**: http://localhost:3003
89
89
  - 📚 **Swagger API Docs**: http://localhost:3003/swagger
90
- - 🔍 **Search & Execute** 4547+ MCP Servers remotely
90
+ - 🔍 **Search & Execute** 4548+ MCP Servers remotely
91
91
  - 🤖 **Integrate** with your AI agents, chatbots, and LLM applications
92
92
 
93
93
  #### 🌐 Remote Tool Execution Example
@@ -107,6 +107,28 @@ curl -X POST http://localhost:3003/api/v1/packages/run \
107
107
  }'
108
108
  ```
109
109
 
110
+ #### 🔌 MCP Gateway (Streamable HTTP Proxy)
111
+
112
+ The registry also acts as an **MCP Gateway** — any registered package can be accessed as a standard [Streamable HTTP](https://modelcontextprotocol.io/specification/2025-03-26/basic/transports#streamable-http) endpoint, even if the original server is STDIO-only.
113
+
114
+ **Endpoint:** `POST /mcp/<packageName>`
115
+
116
+ Pass environment variables via `x-mcp-env-*` headers:
117
+
118
+ ```bash
119
+ curl -X POST http://localhost:3003/mcp/@modelcontextprotocol/server-github \
120
+ -H "Content-Type: application/json" \
121
+ -H "x-mcp-env-GITHUB_PERSONAL_ACCESS_TOKEN: ghp_your_token" \
122
+ -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
123
+ ```
124
+
125
+ The server returns a `mcp-session-id` header — include it in subsequent requests to reuse the session (sessions expire after 30 min).
126
+
127
+ This is useful for:
128
+ - **Protocol Bridging** — Expose local STDIO servers as remote HTTP endpoints
129
+ - **Centralized Access** — Give AI agents a single HTTP gateway to all MCP tools
130
+ - **Client Compatibility** — Connect from any MCP client that supports Streamable HTTP
131
+
110
132
  <details>
111
133
  <summary><strong>Alternative: Use as Registry SDK (Data Only)</strong></summary>
112
134
 
@@ -221,7 +243,7 @@ graph TD
221
243
 
222
244
  This open-source project provides:
223
245
 
224
- - **Structured Registry** - 4547+ MCP servers with metadata
246
+ - **Structured Registry** - 4548+ MCP servers with metadata
225
247
  - **Unified Gateway** - HTTP API to query and execute tools remotely
226
248
  - **Auto-Generated Docs** - Always up-to-date README and API documentation
227
249
 
@@ -274,58 +296,22 @@ const searchTool = await searchMCP.getAISDKTool('tavily-search');
274
296
 
275
297
  ## Contribute Your MCP Server
276
298
 
277
- Help grow the ecosystem! Share your AI tools, plugins, and integrations with the community.
278
-
279
- ### Quick Submission
299
+ Want to add your MCP server to the registry? Check out our [Contributing Guide](./docs/CONTRIBUTING.md) for the full submission process, JSON schema reference, and examples (including remote servers and OAuth 2.1).
280
300
 
281
301
  [![Watch the video](https://img.youtube.com/vi/J_oaDtCoVVo/hqdefault.jpg)](https://www.youtube.com/watch?v=J_oaDtCoVVo)
282
302
 
283
- 1. [Fork this repository](https://github.com/toolsdk-ai/toolsdk-mcp-registry/fork)
284
- 2. Create `your-mcp-server.json` in [packages/uncategorized](./packages/uncategorized) (or the best matching category folder)
285
- 3. Submit a PR
286
-
287
- Config Example:
288
-
289
- ```json
290
- {
291
- "type": "mcp-server",
292
- "name": "Github",
293
- "packageName": "@modelcontextprotocol/server-github",
294
- "description": "MCP server for using the GitHub API",
295
- "url": "https://github.com/modelcontextprotocol/servers/blob/main/src/github",
296
- "runtime": "node",
297
- "license": "MIT",
298
- "env": {
299
- "GITHUB_PERSONAL_ACCESS_TOKEN": {
300
- "description": "Personal access token for GitHub API access",
301
- "required": true
302
- }
303
- }
304
- }
305
- ```
306
-
307
- Your MCP server will be:
308
- - ✅ Listed in the registry
309
- - 🔍 Searchable via REST API
310
- - 📦 Available in npm package
311
- - 🌐 Featured on [ToolSDK.ai](https://toolsdk.ai)
312
-
313
- 📖 **Source of truth (schema, fields, remotes, OAuth)**: [CONTRIBUTING.md](./CONTRIBUTING.md)
314
-
315
- 📚 Additional docs: [docs/guide.md](./docs/guide.md)
316
-
317
303
  ---
318
304
 
319
305
  <a id="mcp-servers"></a>
320
306
 
321
307
  ## MCP Servers Directory
322
308
 
323
- **4547+ AI Agent Tools, LLM Integrations & Automation Servers**
309
+ **4548+ AI Agent Tools, LLM Integrations & Automation Servers**
324
310
 
325
311
  > [!NOTE]
326
312
  > ⭐ **Featured below**: Hand-picked, production-ready MCP servers verified by our team.
327
313
  >
328
- > 📚 **Looking for all 4547+ servers?** Check out [**All MCP Servers**](./docs/ALL-MCP-SERVERS.md) for the complete list.
314
+ > 📚 **Looking for all 4548+ servers?** Check out [**All MCP Servers**](./docs/ALL-MCP-SERVERS.md) for the complete list.
329
315
 
330
316
  > [!TIP]
331
317
  > If a package is marked as `validated: true` in the index, you can usually wire it up in minutes via ToolSDK (e.g. `getAISDKTool(toolKey)`).
@@ -642,6 +628,7 @@ Run code securely, perfect for coding agents and AI-driven programming tasks.
642
628
  AI tools that can autonomously read, write, and execute code to solve programming tasks.
643
629
 
644
630
  - [✅ @steipete/claude-code-mcp](https://github.com/steipete/claude-code-mcp): Provides a streamlined interface for executing complex coding tasks including file operations, Git commands, and web searches without permission interruptions by automatically bypassing constraints. (1 tools) (node)
631
+ - [✅ @toolsdk-remote/roundtable-mcp](https://github.com/deadpixel/roundtable-dashboard): Multi-model AI debate platform — consult GPT-4o, Claude, Gemini & 200+ models that discuss your problem, then synthesize a unified insight. Tools: consult_council, review_code, debug_issue, design_architecture, plan_implementation, assess_tradeoffs. (13 tools) (node)
645
632
  - [✅ mcp-coco](https://github.com/disdjj/mcp-coco): MCP-Coco provides a pair programming tool that guides technical discussions by transforming code snippets into structured frameworks for critical inquiry about performance, security, and maintainability. (1 tools) (node)
646
633
  - [✅ mcp-neovim-server](https://github.com/bigcodegen/mcp-neovim-server): Integrates Claude Desktop with Neovim, enabling AI-enhanced coding assistance within the familiar Vim environment through direct interaction with buffers and commands. (19 tools) (node)
647
634
  - [✅ mcp-server-code-assist](https://github.com/abhishekbhakat/mcp_server_code_assist): Enables code modification and generation tasks through file operations, search-and-replace, and version control integration for automated refactoring and codebase maintenance. (17 tools) (python)
@@ -1252,6 +1252,7 @@
1252
1252
  "dafny-verifier",
1253
1253
  "systemprompt-coding-agent",
1254
1254
  "kodit",
1255
+ "@toolsdk-remote/roundtable-mcp",
1255
1256
  "mcp-server-code-assist",
1256
1257
  "crewai-(near-intents)",
1257
1258
  "codeforces",
@@ -56732,5 +56732,64 @@
56732
56732
  "path": "search-data-extraction/xquik.json",
56733
56733
  "validated": false,
56734
56734
  "tools": {}
56735
+ },
56736
+ "@toolsdk-remote/roundtable-mcp": {
56737
+ "path": "coding-agents/roundtable.json",
56738
+ "category": "coding-agents",
56739
+ "tools": {
56740
+ "list-models": {
56741
+ "name": "list-models",
56742
+ "description": "List available AI models grouped by thinking level (low/medium/high). Shows default models, credit costs, capabilities for each tier. Use this before consult to understand model options."
56743
+ },
56744
+ "list-sessions": {
56745
+ "name": "list-sessions",
56746
+ "description": "List your previous MCP tool sessions. Returns session metadata including prompt, tool used, quality score, and credits consumed. Useful for reviewing past council discussions."
56747
+ },
56748
+ "get-session": {
56749
+ "name": "get-session",
56750
+ "description": "Get full details of a previous MCP session by ID. Returns the complete result including participant responses and moderator synthesis. Use list-sessions first to find session IDs."
56751
+ },
56752
+ "get-logs": {
56753
+ "name": "get-logs",
56754
+ "description": "Query structured logs from your MCP tool executions. Filter by session, severity level, event type, and time range. Useful for debugging and monitoring tool usage."
56755
+ },
56756
+ "check-usage": {
56757
+ "name": "check-usage",
56758
+ "description": "Check your remaining credits, usage limits, and plan info"
56759
+ },
56760
+ "get-thread-link": {
56761
+ "name": "get-thread-link",
56762
+ "description": "Get the dashboard URL for a previous debate session. Returns the thread link and public URL if the thread is public."
56763
+ },
56764
+ "set-thread-visibility": {
56765
+ "name": "set-thread-visibility",
56766
+ "description": "Set a thread as public or private. Public threads can be shared via URL. Use session_id from a previous debate session."
56767
+ },
56768
+ "consult-council": {
56769
+ "name": "consult-council",
56770
+ "description": "Consult the AI coding council — multiple models discuss your engineering question sequentially (each sees prior responses), then a moderator synthesizes. Auto-mode by default — AI picks optimal models, roles, and conversation mode from your prompt. Provide explicit models to override (manual mode). Fully configurable: mode, format, roles, models, thinking level."
56771
+ },
56772
+ "design-architecture": {
56773
+ "name": "design-architecture",
56774
+ "description": "Architecture design council. Systems Architect, Infrastructure Engineer, and DX Advocate evaluate your system design. Always uses high thinking for maximum depth. Output as ADR."
56775
+ },
56776
+ "review-code": {
56777
+ "name": "review-code",
56778
+ "description": "Code review council. Senior Engineer, Security Reviewer, and Performance Analyst analyze your code and a moderator synthesizes their findings."
56779
+ },
56780
+ "plan-implementation": {
56781
+ "name": "plan-implementation",
56782
+ "description": "Implementation planning council. Tech Lead, Senior Engineer, and QA Strategist break down a feature into actionable steps, identify risks, and define acceptance criteria. Output as ADR."
56783
+ },
56784
+ "debug-issue": {
56785
+ "name": "debug-issue",
56786
+ "description": "Debugging council. Root Cause Analyst, Systems Engineer, and Edge Case Investigator collaboratively diagnose bugs, analyze errors, and propose fixes."
56787
+ },
56788
+ "assess-tradeoffs": {
56789
+ "name": "assess-tradeoffs",
56790
+ "description": "Tradeoff assessment council. Pragmatist, Skeptic, and Futurist evaluate options from different angles — short-term vs long-term, risk vs reward, simplicity vs flexibility. Output as pros-cons."
56791
+ }
56792
+ },
56793
+ "validated": true
56735
56794
  }
56736
56795
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toolsdk.ai/registry",
3
- "version": "1.0.169",
3
+ "version": "1.0.171",
4
4
  "description": "An Open, Structured, and Standard Registry for MCP Servers and Packages.",
5
5
  "keywords": [
6
6
  "mcp",
@@ -0,0 +1,19 @@
1
+ {
2
+ "type": "mcp-server",
3
+ "name": "Roundtable",
4
+ "packageName": "@toolsdk-remote/roundtable-mcp",
5
+ "description": "Multi-model AI debate platform — consult GPT-4o, Claude, Gemini & 200+ models that discuss your problem, then synthesize a unified insight. Tools: consult_council, review_code, debug_issue, design_architecture, plan_implementation, assess_tradeoffs.",
6
+ "url": "https://github.com/deadpixel/roundtable-dashboard",
7
+ "runtime": "node",
8
+ "license": "MIT",
9
+ "env": {},
10
+ "remotes": [
11
+ {
12
+ "type": "streamable-http",
13
+ "url": "https://mcp.roundtable.now/mcp",
14
+ "auth": {
15
+ "type": "oauth2"
16
+ }
17
+ }
18
+ ]
19
+ }