Labsco
npupko logo

agency-mcp-server

from npupko

On-demand access to 150+ specialist AI agent templates โ€” search, browse, and spawn agents. 150x reduction in context usage vs loading agents locally.

๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅโœ“ VerifiedFreeQuick setup

agency-mcp-server

npm version JSR CI License: MIT

One MCP config entry. 150+ specialist agents on demand. No manual setup.

Your AI assistant is a generalist. Sometimes you need a specialist -- a game economy designer, a security auditor, a technical writer. This MCP server gives your assistant instant access to 150+ expert agent templates. Describe what you need, it finds the right agent and spawns it.

You: "Help me design a balanced game economy"
Claude: [searches -> finds Game Economy Designer -> spawns it -> expert response]

Templates auto-fetch on first run from agency-agents and stay updated. You don't touch a thing.

How It Works

Your assistant gets four tools:

  1. agency_search(query, division?) -- describe a task, get matching agents with spawn instructions
  2. agency_browse(division?) -- explore divisions and agents when you want to see what's available
  3. agency_status() -- check index freshness: agent count, last update time, whether an update is available
  4. agency_update() -- pull latest templates from git and rebuild the search index without restarting

When you ask for help with something specific, your assistant calls agency_search, picks the best match, and spawns a subagent with that specialist's full system prompt. You get an expert response without ever touching a config file.

What's available

Agents are organized into divisions:

DivisionExamples
EngineeringSoftware Architect, DevOps Engineer, Technical Writer
DesignUI Designer, UX Researcher, Design Systems
Game DevelopmentGame Economy Designer, Game Mechanics Designer
MarketingContent Strategist, SEO Specialist, Email Marketing
Security & SpecializedSecurity Auditor, Data Scientist, Legal Analyst
...and moreAcademic, Sales, Strategy, Support, Testing, Spatial Computing

MCP Interface

Tools

  • agency_search(query, division?) -- find agents by task description, returns matches with file paths and a ready-to-use spawn template
  • agency_browse(division?) -- list all divisions, or list agents within a specific division
  • agency_status() -- check index freshness: agent count, last update time, whether an update is due
  • agency_update() -- pull latest templates from git and rebuild the search index at runtime

Resources

  • agency://agents -- full agent index as JSON
  • agency://divisions -- division list with counts and examples

Prompts

  • use-agent -- describe a task, get the best-matching agent with spawn instructions

Development

npm install
npm run build

# Run with auto-fetched templates
node dist/index.js

# Run with local templates
AGENCY_AGENTS_PATH=./my-agents node dist/index.js

# Type checking
npm run typecheck

# MCP Inspector
npm run inspect