An MCP server for the Agent2Agent (A2A) protocol
Project description
A2A MCP Server
An MCP server that implements an A2A Client for the A2A Protocol. The server can be used to connect and send messages to A2A Servers (remote agents).
The server needs to be initialised with one or more Agent Card URLs, each of which can have custom headers for authentication, configuration, etc.
Agents and their skills can be viewed with the list_available_agents tool, messages can be sent to the agents with the send_message_to_agent tool, and Artifacts that would overload the context can be viewed with view_text_artifact and view_data_artifact tools.
✨ Features
- Connect to any A2A Agent
- Use custom headers for authentication and configuration
- View Agent Cards and Skills
- Send messages to agents
- Continue conversations with agents
- View Artifacts that would overload the context
- Agent conversations are stored in JSON format
📋 Requirements
To run the server you need to install uv if you haven't already.
MacOS/Linux:
curl -LsSf https://astral.sh/uv/install.sh | sh
Windows:
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
🚀 Quick Start
- Download Claude for Desktop
- Add the below to your Claude Desktop config (
~/Library/Application Support/Claude/claude_desktop_config.jsonon macOS):
{
"mcpServers": {
"a2a": {
"command": "uvx",
"args": ["a2anet-mcp"],
"env": {
"A2A_AGENT_CARDS": "[{\"url\": \"https://example.com/.well-known/agent-card.json\"}]"
}
}
}
}
Tip: If you don't have an Agent Card URL
- Create an account on A2A Net
- Pick an agent (e.g. "Tweet Search")
- Take its URL and add
/agent-card.jsonto the end of it (e.g.https://a2anet.com/agent/7TaFj4YlbpngypjX74zl/agent-card.json)- Go to Dashboard
- Click "+ Create Key" > Name your key (e.g. "Test") > Click "Create"
- Set
A2A_AGENT_CARDSto the Agent Card URL and API key (e.g."[{\"url\": \"https://a2anet.com/agent/7TaFj4YlbpngypjX74zl/agent-card.json\"}, \"custom_headers\": {\"X-API-Key\": \"a2anet_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\"}]")
⚙️ Configuration
A2A_AGENT_CARDS should be a JSON stringified list of objects. Each object must have a url key with the full path to the Agent Card. It can optionally have a custom_headers key with an object in the form {"header": "value"}:
export A2A_AGENT_CARDS='[
{
"url": "https://example.com/.well-known/agent-card.json",
"custom_headers": {"X-API-Key": "your-key"} # Optional
}
]'
🛠️ Tools
list_available_agents
Discover available agents and their capabilities.
send_message_to_agent
Send a message to an agent.
| Parameter | Required | Description |
|---|---|---|
agent_name |
Yes | Agent name from list_available_agents |
message |
Yes | Your message or request |
context_id |
No | Continue an existing conversation |
view_text_artifact
View text content from an artifact with optional line range selection.
| Parameter | Required | Description |
|---|---|---|
context_id |
Yes | Conversation context ID |
artifact_id |
Yes | Artifact to view |
line_start |
No | Starting line number (1-based, inclusive) |
line_end |
No | Ending line number (1-based, inclusive) |
view_data_artifact
View structured data from an artifact with optional filtering.
| Parameter | Required | Description |
|---|---|---|
context_id |
Yes | Conversation context ID |
artifact_id |
Yes | Artifact to view |
json_path |
No | Dot-separated path to extract specific fields |
rows |
No | Row selection (index, list, range string, or "all") |
columns |
No | Column selection (name, list, or "all") |
📖 Examples
List agents
list_available_agents()
{
"agents": [
{
"name": "Twitter Agent",
"description": "Find and analyze tweets",
"skills": ["Find Tweets", "Analyze Sentiment"]
}
],
"count": 1
}
Send a message
send_message_to_agent(
agent_name="Twitter Agent",
message="Find tweets about AI from today"
)
{
"context_id": "ctx-xyz789",
"status": {
"state": "completed",
"message": {
"parts": [
{ "type": "text", "text": "Found 25 tweets about AI." }
]
}
},
"artifacts": [
{
"artifact_id": "art-456",
"name": "Tweet Results",
"parts": [
{
"type": "data",
"data": {
"_total_rows": 25,
"_columns": [...],
"_tip": "Table data was minimized. Use view_data_artifact to view specific data."
}
}
]
}
]
}
Multi-turn conversation
Use context_id to continue a conversation:
send_message_to_agent(
agent_name="Twitter Agent",
message="Filter to only verified accounts",
context_id="ctx-xyz789"
)
{
"context_id": "ctx-xyz789",
"status": {
"state": "completed",
"message": {
"parts": [
{ "type": "text", "text": "Filtered to 8 tweets from verified accounts." }
]
}
},
"artifacts": [...]
}
View data artifact
view_data_artifact(
context_id="ctx-xyz789",
artifact_id="art-456",
rows="0-5",
columns=["author", "text"]
)
{
"artifact_id": "art-456",
"name": "Tweet Results",
"total_rows": 25,
"total_columns": 5,
"selected_rows": 5,
"selected_columns": 2,
"available_columns": ["id", "author", "text", "likes", "retweets"],
"data": [
{ "author": "@techwriter", "text": "AI is transforming..." },
{ "author": "@ainews", "text": "Breaking: New model..." }
]
}
💾 Data Storage
Agent conversations are stored in JSON format to a standard path and can be inspected.
- Linux:
~/.local/share/a2anet-mcp/conversations/ - macOS:
~/Library/Application Support/a2anet-mcp/conversations/ - Windows:
AppData/Local/A2ANet/a2anet-mcp/conversations/
🔧 Development
Claude Desktop Setup
For local development:
- Clone the repository:
git clone https://github.com/a2anet/a2a-mcp.git - Download Claude for Desktop.
- Add to the below to your Claude Desktop config (
~/Library/Application Support/Claude/claude_desktop_config.jsonon macOS):
{
"mcpServers": {
"a2a": {
"command": "uv",
"args": ["--directory", "/path/to/a2a-mcp", "run", "a2anet-mcp"],
"env": {
"A2A_AGENT_CARDS": "[{\"url\": \"https://example.com/.well-known/agent-card.json\"}]"
}
}
}
}
📄 License
a2anet is distributed under the terms of the Apache-2.0 license.
🤝 Join the A2A Net Community
A2A Net is a site to find and share AI agents and open-source community. Join to share your A2A agents, ask questions, stay up-to-date with the latest A2A news, be the first to hear about open-source releases, tutorials, and more!
- 🌍 Site: A2A Net
- 🤖 Discord: Join the Discord
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file a2anet_mcp-1.0.0.tar.gz.
File metadata
- Download URL: a2anet_mcp-1.0.0.tar.gz
- Upload date:
- Size: 68.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e1742e7d89f7eaafd68ddfd33329b7e4180ac49c5da4f020ee60a36cb2342fc
|
|
| MD5 |
5db2a9005d2efddec5918db2393b199e
|
|
| BLAKE2b-256 |
1e5d4af1c2535d691271a930768516161851ac15545d36dd1216b50f72170758
|
File details
Details for the file a2anet_mcp-1.0.0-py3-none-any.whl.
File metadata
- Download URL: a2anet_mcp-1.0.0-py3-none-any.whl
- Upload date:
- Size: 32.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
76c9944f5a611ce62917a00fbe8280097fe4e1006dd8964e74c612b85f242bd2
|
|
| MD5 |
7a421fbdc21ca448d228d98344bd5742
|
|
| BLAKE2b-256 |
e3bb64422f803307f8d5c18733c2b7e08a0e548efe4fd639b4e482f53c4ae026
|