Agents 🤖
A collection of AI agents for various tasks.
Getting Started 🚀
Welcome to the agents repository! This project contains various AI agent definitions. The definitions can be used by any agentic system that supports markdown.
Pantheon-MCP Server for Agents

An MCP (Model Context Protocol) server that delivers AI agent instructions on demand from this repository's collection of 42+ specialized agents.
{
"mcpServers": {
"pantheon-mcp": {
"type": "stdio",
"command": "npx",
"args": ["-y", "pantheon-mcp"],
"env": {}
}
}
}Available Tools
The server exposes 3 MCP tools:
list_agents
List all available agents, optionally filtered by category.
{
"name": "list_agents",
"arguments": {
"category": "tech" // optional: business, growth, product, tech
}
}get_agent
Get detailed information about a specific agent by name.
{
"name": "get_agent",
"arguments": {
"name": "react-frontend-dev"
}
}





