Use this skill to:
/plugin marketplace add secondsky/claude-skills/plugin install mcp-dynamic-orchestrator@claude-skillsThis skill inherits all available tools. When active, it can use any tool Claude has access to.
references/mcp-protocol.mdreferences/registry-schema.mdreferences/security-model.mdreferences/troubleshooting.mdscripts/describe_mcp.tsscripts/execute_mcp_code.tsscripts/list_mcp_capabilities.tsUse 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.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.
Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.
Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.