Help us improve
Share bugs, ideas, or general feedback.
Discovers MCP servers from registry by query, inspects capabilities, and executes TS/JS via generated client modules. For dynamic MCP tool integrations like Cloudflare.
npx claudepluginhub secondsky/claude-skills --plugin mcp-dynamic-orchestratorHow this skill is triggered — by the user, by Claude, or both
Slash command
/mcp-dynamic-orchestrator:mcp-dynamic-orchestratorThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill to:
Manages MCP servers by discovering, analyzing, and executing tools/prompts/resources via CLI scripts. Use for integrations, capability discovery, tool filtering, and context bloat resolution.
Discovers zero-setup hosted MCP servers (Supabase, Vercel, Sentry, Stripe, Linear, Slack, Greptile) and provides connection URLs for immediate use in any MCP client.
Handles Claude Code MCP integration: installs/manages servers (HTTP/SSE/stdio), scopes, enterprise configs, OAuth auth, resources/@mentions, prompts, limits, security; delegates to docs-management.
Share bugs, ideas, or general feedback.
Use this skill to:
mcp-clients/* modules.If no MCP servers are configured, list_mcp_capabilities will respond with an empty list
and a message pointing to skills/mcp-dynamic-orchestrator/mcp.registry.json so the user
can add MCP entries.
This skill reads from mcp.registry.json, so adding an MCP entry there (for example the
Cloudflare MCP) automatically makes it discoverable without changing tool wiring.
The Cloudflare MCP server can be configured in mcp.registry.json like this:
{
"id": "cloudflare",
"title": "Cloudflare platform MCP",
"summary": "Interact with Cloudflare's MCP endpoint for documentation, examples, and platform operations exposed via the official Cloudflare MCP server.",
"mcp": {
"transport": "stdio",
"command": "npx",
"args": [
"mcp-remote",
"https://docs.mcp.cloudflare.com/sse"
]
},
"domains": ["cloudflare", "workers", "kv", "r2", "queues", "zero_trust", "networking", "security", "observability"],
"tags": ["cloudflare", "platform", "infra", "docs", "workers", "mcp"],
"examples": [
"Fetch Cloudflare Workers documentation for a specific API.",
"Search Cloudflare platform docs for queues or KV usage patterns.",
"Look up configuration guidance for Zero Trust or networking features."
],
"sensitivity": "low",
"visibility": "default",
"priority": 10,
"autoDiscoverTools": true
}
With this entry present:
list_mcp_capabilities will return cloudflare when queries mention Cloudflare, Workers, KV, R2, Queues, etc.describe_mcp with id: "cloudflare" will surface concise tool summaries from the Cloudflare MCP server.execute_mcp_code lets the agent write TypeScript such as:import * as cloudflare from "mcp-clients/cloudflare";
async function main() {
const docs = await cloudflare.search_docs({ query: "Workers KV" });
console.log(docs.summary);
}
The actual available functions under mcp-clients/cloudflare are generated dynamically
from the MCP tool definitions; the agent should always:
list_mcp_capabilities.describe_mcp to see available operations.execute_mcp_code.list_mcp_capabilities with a natural language query or filters to see which MCPs exist.cloudflare), call describe_mcp to understand its operations.mcp-clients/<id> and calls the exported functions.execute_mcp_code, optionally restricting allowedMcpIds for safety.execute_mcp_code.detail: "schema" in describe_mcp only when exact parameter shapes are required.⚠️ The current sandbox implementation is NOT secure for untrusted code.
vm.createContext() which is NOT a security boundaryMCP_ORCH_ENABLE_SANDBOX=1 environment variablereferences/security-model.md for complete security details.ts format will failmcp-clients/* don't resolve; use $call() APIFor detailed troubleshooting, see references/troubleshooting.md.
What's Working ✅:
list_mcp_capabilities (fully functional)describe_mcp (fully functional)What's Limited 🟡:
What's Planned 🔮:
For complete roadmap, see plan.md in repository root.