A collection of AI agents for various tasks. Welcome to the agents repository! This project contains various AI agent definitions. The definitions can be used by any agentic system that supports markdown. An MCP (Model Context Protocol) server that delivers AI agent instructions on demand from this repository's collection of 42+ specialized agents. The server exposes 3 MCP tools: List all availabl
Add this skill
npx mdskills install valado/pantheon-mcpMCP server providing access to 42+ agent definitions with clean tool design and clear setup
1# Agents 🤖23A collection of AI agents for various tasks.45## Getting Started 🚀67Welcome to the agents repository! This project contains various AI agent definitions. The definitions can be used by any agentic system that supports markdown.89# Pantheon-MCP Server for Agents10111213[Homepage](https://pantheon-mcp.com)1415An MCP (Model Context Protocol) server that delivers AI agent instructions on demand from this repository's collection of 42+ specialized agents.1617```json18{19 "mcpServers": {20 "pantheon-mcp": {21 "type": "stdio",22 "command": "npx",23 "args": ["-y", "pantheon-mcp"],24 "env": {}25 }26 }27}28```2930## Available Tools3132The server exposes 3 MCP tools:3334### `list_agents`3536List all available agents, optionally filtered by category.3738```json39{40 "name": "list_agents",41 "arguments": {42 "category": "tech" // optional: business, growth, product, tech43 }44}45```4647### `get_agent`4849Get detailed information about a specific agent by name.5051```json52{53 "name": "get_agent",54 "arguments": {55 "name": "react-frontend-dev"56 }57}58```5960### `search_agents`6162Search agents by keywords in name, description, or instructions.6364```json65{66 "name": "search_agents",67 "arguments": {68 "keywords": "react",69 "category": "tech" // optional filter70 }71}72```7374## Agent Categories7576- **business** (6 agents): business-analyst, cfo-financial-analyzer, compliance-officer, financial-analyst, sales-strategist, startup-mentor77- **growth** (5 agents): conversion-optimizer, growth-marketer, idea-visionary, marketing-copywriter, marketing-strategist78- **product** (3 agents): product-designer, product-manager, product-strategist79- **tech** (28 agents): accessibility-auditor, ai-prompt-engineer, api-designer, aws-cloud-architect, code-reviewer, react-frontend-dev, and many more...8081## Installation8283To install globally:8485```bash86npm install -g pantheon-mcp87npx pantheon-mcp88```8990## Development9192```bash93npm install94npm run build95npm run dev96```9798---99100Built with ❤️ and AI101
Full transparency — inspect the skill content before installing.