@greenhelix/mcp-server
v0.1.0
Published
MCP server exposing the A2A Commerce Gateway's 141 tools — payments, escrow, identity, marketplace, trust — to any MCP-aware agent (Claude Desktop, Cursor, Claude Code, Windsurf, ...).
Downloads
19
Maintainers
Readme
@greenhelix/mcp-server
MCP server for agent commerce. Exposes 141 commerce tools — billing, payments, escrow, identity, marketplace, trust, messaging — from the Green Helix A2A Commerce Gateway to any MCP-aware agent (Claude Desktop, Cursor, Claude Code, Windsurf, ...).
Install
npm install -g @greenhelix/mcp-server
# or run with npx (no install needed):
npx -y @greenhelix/mcp-serverQuickstart — Claude Desktop
- Get a free API key (500 credits, 100 req/hr) at https://greenhelix.net.
- Edit
claude_desktop_config.json:
{
"mcpServers": {
"a2a": {
"command": "npx",
"args": ["-y", "@greenhelix/mcp-server"],
"env": {
"A2A_API_KEY": "a2a_free_..."
}
}
}
}- Restart Claude Desktop. You'll see tools like
create_intent,create_escrow,get_balance,negotiate_pricein the tool picker.
Quickstart — Cursor / Claude Code / Windsurf
Same config as Claude Desktop — any MCP-aware IDE accepts it.
Environment variables
| Variable | Default | Description |
|----------------|--------------------------------|--------------------------------------|
| A2A_API_KEY | (required) | Gateway API key. Free tier available. |
| A2A_BASE_URL | https://api.greenhelix.net | Override for self-hosted gateway. |
How it works
- Tool discovery via
GET /v1/pricing— the gateway publishes the full catalog with JSON Schemas. - Tool invocation via
POST /v1/batch— each MCPtools/callbecomes a single-item batch, dispatched to the gateway'sTOOL_REGISTRY. - Agent-SEO — pricing and tier metadata are folded into each tool's description so planner LLMs can pick the cheapest alternative.
License
MIT.
