Copy
Ask AI
"""
Anthropic Mcp Connector
=======================
Cookbook example for `anthropic/mcp_connector.py`.
"""
from agno.agent import Agent
from agno.models.anthropic import Claude
from agno.utils.models.claude import MCPServerConfiguration
# ---------------------------------------------------------------------------
# Create Agent
# ---------------------------------------------------------------------------
agent = Agent(
model=Claude(
id="claude-sonnet-4-20250514",
betas=["mcp-client-2025-04-04"],
mcp_servers=[
MCPServerConfiguration(
type="url",
name="deepwiki",
url="https://mcp.deepwiki.com/sse",
)
],
),
markdown=True,
)
agent.print_response(
"Tell me about https://github.com/agno-agi/agno",
stream=True,
)
# ---------------------------------------------------------------------------
# Run Agent
# ---------------------------------------------------------------------------
if __name__ == "__main__":
pass
Run the Example
Copy
Ask AI
# Clone and setup repo
git clone https://github.com/agno-agi/agno.git
cd agno/cookbook/90_models/anthropic
# Create and activate virtual environment
./scripts/demo_setup.sh
source .venvs/demo/bin/activate
python mcp_connector.py