PluginBench
MCP Server
Active
MIT

Agent Blueprint MCP Server

io.github.agent-blueprint/mcp-server

What is the Agent Blueprint MCP server?

Explore and download AI agent blueprints as Agent Skills directories for coding agents

How to install Agent Blueprint

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • AGENT_BLUEPRINT_API_KEY
    required
    secret

    API token from app.agentblueprint.ai/settings/api-tokens

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "agentblueprint"
      ],
      "env": {
        "AGENT_BLUEPRINT_API_KEY": "<YOUR_AGENT_BLUEPRINT_API_KEY>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "agentblueprint"
      ],
      "env": {
        "AGENT_BLUEPRINT_API_KEY": "<YOUR_AGENT_BLUEPRINT_API_KEY>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "agentblueprint"
      ],
      "env": {
        "AGENT_BLUEPRINT_API_KEY": "<YOUR_AGENT_BLUEPRINT_API_KEY>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "agentblueprint"
      ],
      "env": {
        "AGENT_BLUEPRINT_API_KEY": "<YOUR_AGENT_BLUEPRINT_API_KEY>"
      }
    }
  }
}
Claude Code
claude mcp add mcp-server --env AGENT_BLUEPRINT_API_KEY=<YOUR_AGENT_BLUEPRINT_API_KEY> -- npx -y agentblueprint

Related MCP servers

Free AI agent blueprints for procurement and onboarding. No signup, no API key.

0
TypeScript
View repository →