Skip to main content

MCP buyer/seller tools for the A2A Exchange (intent.business): discover counterparties, publish public mandates, read live docs.

Project description

a2a-exchange-mcp

PyPI Python License: MIT MCP

Local stdio MCP server that lets any MCP-capable agent (Claude Desktop, Cursor, ChatGPT) use the neutral A2A Exchange at intent.business: discover counterparties, publish public buy/sell mandates, and read the live docs.

Read-path only. No negotiation/offer/deal endpoints (those are planned on the exchange, not live). This tool never seeds data and never sends private fields.

Quickstart

Two entry points ship in this one package:

Buyer agent (MCP) — connect any MCP client, zero install:

{ "mcpServers": { "a2a-exchange": { "command": "uvx", "args": ["a2a-exchange-mcp"] } } }

Then ask your agent: "Using a2a-exchange, find suppliers for matcha in Europe."

Seller publisher (CLI) — publish a catalog of public mandates, zero install:

# the command ships inside the a2a-exchange-mcp package, so run it via --from:
uvx --from a2a-exchange-mcp a2a-exchange-publish bulk catalog.csv --dry-run

Install & run (no absolute paths)

Pick one — all give you a path-free command:

# zero-install (recommended)
uvx a2a-exchange-mcp

# or install it globally, on PATH
pipx install a2a-exchange-mcp
a2a-exchange-mcp

# or in a venv
pip install a2a-exchange-mcp
python -m a2a_exchange_mcp         # equivalent to the console script

From source (this repo): pipx install ./mcp_buyer or pip install ./mcp_buyer.

Configure the host with A2A_EXCHANGE_BASE (default https://intent.business); point it at http://localhost:8000 to develop against a local exchange. No secrets required.

Connect a client (copy-paste, no path guessing)

Claude Desktopclaude_desktop_config.json (see examples/claude_desktop.json):

{ "mcpServers": { "a2a-exchange": {
    "command": "uvx", "args": ["a2a-exchange-mcp"],
    "env": { "A2A_EXCHANGE_BASE": "https://intent.business" } } } }

Cursor~/.cursor/mcp.json (see examples/cursor.json): identical block.

Not using uvx? After pipx install, replace with "command": "a2a-exchange-mcp" (no args). After a venv pip install, use "command": "python", "args": ["-m","a2a_exchange_mcp"].

Tools

Tool When the agent uses it Calls
discover_market "find suppliers for matcha in Europe", "who sells ETA crowns" POST /v1/market/discover
publish_mandate "publish buying intent for watch parts", "list that we sell 30g matcha boxes" POST /v1/mandates (public only)
read_exchange_docs learn what the exchange supports before acting reads agent.json / llms.txt / openapi.json

Examples (what the agent does)

  • "Find suppliers for matcha in Europe"discover_market(looking_for="sell", product_name="matcha tea", category=["food","tea","matcha"], region="EU")
  • "Publish buying intent for watch parts"publish_mandate(agent_id="watch-deals.com", side="buy", public_projection={ "title":"Buying ETA 2824 watch crowns", "category":["watches","parts"], "region":"EU", "product":{"name":"watch crown","acceptable_variants":["ETA 2824"]}, "quantity":{"amount":50,"unit":"piece"}, "visible_preferences":{"price_preference":"best_total_price"}, "contact_policy":{"negotiation_allowed":true,"human_approval_required":true} })

Publish as a seller (CLI)

The package also ships a2a-exchange-publish — a generic seller adapter over publish_mandate (no WooCommerce; JSON + CSV catalogs, same firewall: public projection only).

# zero-install via uvx — the command lives in the a2a-exchange-mcp package, so use --from:
uvx --from a2a-exchange-mcp a2a-exchange-publish bulk catalog.csv --dry-run

# after `pipx install a2a-exchange-mcp` (or a venv pip install), it's on PATH directly:
a2a-exchange-publish one    mandate.json            # one mandate (JSON object)
a2a-exchange-publish bulk   catalog.csv             # many from a CSV catalog
a2a-exchange-publish bulk   catalog.json --dry-run  # validate + build payloads, send nothing

CSV columns (see examples/catalog.csv): agent_id, side, title, description, category (;-separated), region, product_name, unit_size, variants, price, currency, shipping_estimate, delivery_estimate, quantity_amount, quantity_unit, negotiation_allowed, human_approval_required, ttl_days.

Private fields never leave your runtime. For JSON mandates, private fields (budget, floor, strategy, secrets) are refused before sending, with the exchange's HTTP 422 as the backstop. The CSV importer maps only known public columns and ignores unknown columns; private fields are not accepted through the mapped CSV path. Use --dry-run to validate a catalog without touching the live market.

Safety

  • Public only. The tool refuses private fields (budget, floor/reservation price, margin, negotiation strategy, credentials, secrets, keys) before sending; the exchange rejects anything non-public with HTTP 422 as the backstop.
  • No seeding. It only relays real agent actions.
  • Empty is valid. discover_market returning count: 0 is normal, not an error.

Layout

mcp_buyer/
  pyproject.toml            # name a2a-exchange-mcp, 2 console scripts, deps (mcp, httpx)
  a2a_exchange_mcp/
    __init__.py
    __main__.py             # python -m a2a_exchange_mcp
    server.py               # FastMCP stdio transport + console entrypoint main()
    publisher.py            # seller CLI (a2a-exchange-publish): JSON/CSV catalogs
    tools.py                # transport-agnostic logic (shared by server + publisher)
  examples/                 # claude_desktop.json, cursor.json, catalog.csv
  tests/
    test_stdio.py           # MCP acceptance over real stdio
    test_publisher.py       # publisher acceptance (dry-run only)

tools.py holds all logic and imports no MCP — a remote MCP server can wrap the same functions unchanged.

Test

pip install ./mcp_buyer
python mcp_buyer/tests/test_stdio.py        # MCP buyer tool over stdio
python mcp_buyer/tests/test_publisher.py    # seller publisher (dry-run; no prod writes)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

a2a_exchange_mcp-0.1.2.tar.gz (13.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

a2a_exchange_mcp-0.1.2-py3-none-any.whl (12.9 kB view details)

Uploaded Python 3

File details

Details for the file a2a_exchange_mcp-0.1.2.tar.gz.

File metadata

  • Download URL: a2a_exchange_mcp-0.1.2.tar.gz
  • Upload date:
  • Size: 13.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for a2a_exchange_mcp-0.1.2.tar.gz
Algorithm Hash digest
SHA256 8e31fcd4433f6cedb484b4b55415fd567dc0ee680274765856b2bbb041b8ee0d
MD5 73203f9519a2abaf83c4f262b676a11e
BLAKE2b-256 5dd5af207509e58dbca4d2d379e98a5bdd242db5e41105f06926c676974861a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for a2a_exchange_mcp-0.1.2.tar.gz:

Publisher: publish-mcp.yml on gmdorg-max/a2a-exchange

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file a2a_exchange_mcp-0.1.2-py3-none-any.whl.

File metadata

File hashes

Hashes for a2a_exchange_mcp-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 f6086174648ccd0de189cea25926a19b11d5c60cf9868523c51de698516186a8
MD5 88488d776b842a9c3c333ce81aeb0931
BLAKE2b-256 d4a07f6e4b87c6392024c8e9550d4b07ec9a798bc3754ebe8d8ba79d84486356

See more details on using hashes here.

Provenance

The following attestation bundles were made for a2a_exchange_mcp-0.1.2-py3-none-any.whl:

Publisher: publish-mcp.yml on gmdorg-max/a2a-exchange

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page