feat: add MCP server for dynamic agent discovery#158
Closed
kienbui1995 wants to merge 1 commit intomsitarzewski:mainfrom
Closed
feat: add MCP server for dynamic agent discovery#158kienbui1995 wants to merge 1 commit intomsitarzewski:mainfrom
kienbui1995 wants to merge 1 commit intomsitarzewski:mainfrom
Conversation
Adds an MCP server that exposes all 106 agents via Model Context Protocol, enabling any MCP-compatible client to browse, search, and use agents without file installation. Tools: - list_agents: List all agents, optionally filter by division - get_agent: Get full agent prompt by name (fuzzy match) - search_agents: Keyword search across name, description, content Works with Claude Desktop, Kiro CLI, VS Code, Cursor, and any MCP client. Uses stdio transport, TypeScript, @modelcontextprotocol/sdk v1.x.
Owner
|
Hey @kienbui1995 — this is a genuinely useful idea, but it's a poor fit for this repo. Adding an MCP server introduces npm, TypeScript compilation, and a dependency tree into what is otherwise a pure-markdown project. Contributor simplicity is sacred here — adding an agent is one markdown file. I'd love to see this as a standalone package that reads from a cloned Your other PRs (#154, #155, #157) are excellent — this one is just a scope mismatch. Keep them coming! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds an MCP (Model Context Protocol) server that exposes all 106 agents dynamically — any MCP-compatible client can browse, search, and use agents without running install scripts or copying files.
Why
Currently, using agents requires running
convert.sh+install.shand copying files to specific tool directories. An MCP server lets any compatible client (Claude Desktop, Kiro CLI, VS Code, Cursor) discover and use agents with zero setup beyond pointing to the server.Tools
list_agentslist_agents(division: "engineering")→ 16 agentsget_agentget_agent(name: "Frontend Developer")→ full promptsearch_agentssearch_agents(query: "React")→ 14 resultsSetup
Then add to any MCP client config:
{ "mcpServers": { "agency-agents": { "command": "node", "args": ["/path/to/agency-agents/mcp-server/build/index.js"] } } }Test Results
Tech
@modelcontextprotocol/sdkv1.xFiles