{"id":"439797e4-be5c-4061-906d-7fa25b839732","shortId":"LJVCcU","kind":"skill","title":"pilot-mcp-bridge-fleet-setup","tagline":"Deploy an MCP and A2A bridge fleet with 3 agents.  Use this skill when: 1. User wants to bridge MCP servers or A2A agents onto the Pilot network 2. User is configuring an MCP gateway, A2A bridge, or tool registry agent 3. User asks about connecting different agent ecosystems over","description":"# MCP Bridge Fleet Setup\n\nDeploy 3 agents: MCP gateway, A2A bridge, and tool registry.\n\n## Roles\n\n| Role | Hostname | Skills | Purpose |\n|------|----------|--------|---------|\n| mcp-gateway | `<prefix>-mcp-gw` | pilot-mcp-bridge, pilot-api-gateway, pilot-health, pilot-metrics | Bridges MCP tool servers |\n| a2a-bridge | `<prefix>-a2a-bridge` | pilot-a2a-bridge, pilot-task-router, pilot-audit-log | Connects A2A protocol agents |\n| tool-registry | `<prefix>-tool-registry` | pilot-directory, pilot-discover, pilot-announce-capabilities, pilot-load-balancer | Central tool directory |\n\n## Setup Procedure\n\n**Step 1:** Ask the user which role and prefix.\n\n**Step 2:** Install skills:\n```bash\n# mcp-gateway:\nclawhub install pilot-mcp-bridge pilot-api-gateway pilot-health pilot-metrics\n# a2a-bridge:\nclawhub install pilot-a2a-bridge pilot-task-router pilot-audit-log\n# tool-registry:\nclawhub install pilot-directory pilot-discover pilot-announce-capabilities pilot-load-balancer\n```\n\n**Step 3:** Set hostname and write manifest to `~/.pilot/setups/mcp-bridge-fleet.json`.\n\n**Step 4:** Both bridges handshake the registry.\n\n## Manifest Templates Per Role\n\n### mcp-gateway\n```json\n{\n  \"setup\": \"mcp-bridge-fleet\", \"role\": \"mcp-gateway\", \"role_name\": \"MCP Gateway\",\n  \"hostname\": \"<prefix>-mcp-gw\",\n  \"skills\": {\n    \"pilot-mcp-bridge\": \"Bridge MCP tool servers onto the Pilot network.\",\n    \"pilot-api-gateway\": \"Accept tool calls from Pilot agents.\",\n    \"pilot-health\": \"Monitor MCP server availability.\",\n    \"pilot-metrics\": \"Track tool call throughput and latency.\"\n  },\n  \"data_flows\": [\n    { \"direction\": \"send\", \"peer\": \"<prefix>-tool-registry\", \"port\": 1002, \"topic\": \"tool-register\", \"description\": \"Register MCP tools\" },\n    { \"direction\": \"receive\", \"peer\": \"<prefix>-tool-registry\", \"port\": 1002, \"topic\": \"tool-call\", \"description\": \"Incoming tool calls\" },\n    { \"direction\": \"send\", \"peer\": \"<prefix>-tool-registry\", \"port\": 1002, \"topic\": \"tool-result\", \"description\": \"Tool call results\" }\n  ],\n  \"handshakes_needed\": [\"<prefix>-tool-registry\"]\n}\n```\n\n### a2a-bridge\n```json\n{\n  \"setup\": \"mcp-bridge-fleet\", \"role\": \"a2a-bridge\", \"role_name\": \"A2A Bridge\",\n  \"hostname\": \"<prefix>-a2a-bridge\",\n  \"skills\": {\n    \"pilot-a2a-bridge\": \"Connect Google A2A protocol agents to Pilot.\",\n    \"pilot-task-router\": \"Route tasks between A2A and Pilot agents.\",\n    \"pilot-audit-log\": \"Log all cross-protocol task routing.\"\n  },\n  \"data_flows\": [\n    { \"direction\": \"send\", \"peer\": \"<prefix>-tool-registry\", \"port\": 1002, \"topic\": \"tool-register\", \"description\": \"Register A2A agents\" },\n    { \"direction\": \"receive\", \"peer\": \"<prefix>-tool-registry\", \"port\": 1002, \"topic\": \"tool-call\", \"description\": \"Incoming task routes\" }\n  ],\n  \"handshakes_needed\": [\"<prefix>-tool-registry\"]\n}\n```\n\n### tool-registry\n```json\n{\n  \"setup\": \"mcp-bridge-fleet\", \"role\": \"tool-registry\", \"role_name\": \"Tool Registry\",\n  \"hostname\": \"<prefix>-tool-registry\",\n  \"skills\": {\n    \"pilot-directory\": \"Central directory of all available tools.\",\n    \"pilot-discover\": \"Serve capability queries from agents.\",\n    \"pilot-announce-capabilities\": \"Accept tool registrations from bridges.\",\n    \"pilot-load-balancer\": \"Balance tool calls across multiple providers.\"\n  },\n  \"data_flows\": [\n    { \"direction\": \"receive\", \"peer\": \"<prefix>-mcp-gw\", \"port\": 1002, \"topic\": \"tool-register\", \"description\": \"MCP tool registrations\" },\n    { \"direction\": \"receive\", \"peer\": \"<prefix>-a2a-bridge\", \"port\": 1002, \"topic\": \"tool-register\", \"description\": \"A2A agent registrations\" },\n    { \"direction\": \"send\", \"peer\": \"<prefix>-mcp-gw\", \"port\": 1002, \"topic\": \"tool-call\", \"description\": \"Route tool calls to MCP\" },\n    { \"direction\": \"send\", \"peer\": \"<prefix>-a2a-bridge\", \"port\": 1002, \"topic\": \"tool-call\", \"description\": \"Route tasks to A2A\" }\n  ],\n  \"handshakes_needed\": [\"<prefix>-mcp-gw\", \"<prefix>-a2a-bridge\"]\n}\n```\n\n## Data Flows\n\n- `mcp-gateway → tool-registry` : MCP tool registrations (port 1002)\n- `a2a-bridge → tool-registry` : A2A agent registrations (port 1002)\n- `tool-registry → mcp-gateway` : tool call routing (port 1002)\n- `tool-registry → a2a-bridge` : task routing (port 1002)\n\n## Workflow Example\n\n```bash\n# On mcp-gateway — register a tool:\npilotctl --json publish <prefix>-tool-registry tool-register '{\"name\":\"web-search\",\"protocol\":\"mcp\"}'\n# On tool-registry — route a call:\npilotctl --json publish <prefix>-mcp-gw tool-call '{\"call_id\":\"C-401\",\"tool\":\"web-search\",\"params\":{\"query\":\"Pilot Protocol\"}}'\n# On mcp-gateway — return result:\npilotctl --json publish <prefix>-tool-registry tool-result '{\"call_id\":\"C-401\",\"result\":{\"url\":\"https://pilotprotocol.network\"}}'\n```\n\n## Dependencies\n\nRequires `pilot-protocol` skill, `pilotctl` binary, `clawhub` binary, and a running daemon.","tags":["pilot","mcp","bridge","fleet","setup","skills","teoslayer","agent-skills","ai-agents","clawhub","networking","openclaw"],"capabilities":["skill","source-teoslayer","skill-pilot-mcp-bridge-fleet-setup","topic-agent-skills","topic-ai-agents","topic-clawhub","topic-networking","topic-openclaw","topic-overlay-network","topic-p2p","topic-pilot-protocol"],"categories":["pilot-skills"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/TeoSlayer/pilot-skills/pilot-mcp-bridge-fleet-setup","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add TeoSlayer/pilot-skills","source_repo":"https://github.com/TeoSlayer/pilot-skills","install_from":"skills.sh"}},"qualityScore":"0.453","qualityRationale":"deterministic score 0.45 from registry signals: · indexed on github topic:agent-skills · 6 github stars · SKILL.md body (4,781 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-05-18T19:14:57.918Z","embedding":null,"createdAt":"2026-05-18T13:22:43.473Z","updatedAt":"2026-05-18T19:14:57.918Z","lastSeenAt":"2026-05-18T19:14:57.918Z","tsv":"'-401':669,696 '/.pilot/setups/mcp-bridge-fleet.json':224 '1':21,148 '1002':305,321,337,415,431,512,528,544,562,592,603,614,624 '2':35,157 '3':15,48,62,217 '4':226 'a2a':11,29,42,66,101,104,108,119,181,187,352,362,366,370,375,379,391,422,525,534,559,571,578,594,599,619 'a2a-bridge':100,103,180,351,361,369,524,558,577,593,618 'accept':274,488 'across':500 'agent':16,30,47,54,63,121,279,381,394,423,483,535,600 'announc':136,210,486 'api':88,172,272 'ask':50,149 'audit':116,195,397 'avail':286,474 'balanc':141,215,496,497 'bash':160,627 'binari':707,709 'bridg':4,12,25,43,58,67,85,96,102,105,109,169,182,188,228,243,261,262,353,358,363,367,371,376,452,492,526,560,579,595,620 'c':668,695 'call':276,292,325,329,344,435,499,548,552,566,611,656,665,666,693 'capabl':137,211,480,487 'central':142,470 'clawhub':164,183,200,708 'configur':38 'connect':52,118,377 'cross':402 'cross-protocol':401 'daemon':713 'data':296,406,503,580 'depend':700 'deploy':7,61 'descript':310,326,342,420,436,517,533,549,567 'differ':53 'direct':298,314,330,408,424,505,521,537,555 'directori':130,144,204,469,471 'discov':133,207,478 'ecosystem':55 'exampl':626 'fleet':5,13,59,244,359,453 'flow':297,407,504,581 'gateway':41,65,78,89,163,173,238,248,252,273,584,609,631,681 'googl':378 'gw':81,256,510,542,576,662 'handshak':229,346,440,572 'health':92,176,282 'hostnam':73,219,253,368,462 'id':667,694 'incom':327,437 'instal':158,165,184,201 'json':239,354,448,636,658,685 'latenc':295 'load':140,214,495 'log':117,196,398,399 'manifest':222,232 'mcp':3,9,26,40,57,64,77,80,84,97,162,168,237,242,247,251,255,260,263,284,312,357,451,509,518,541,554,575,583,588,608,630,649,661,680 'mcp-bridge-fleet':241,356,450 'mcp-gateway':76,161,236,246,582,607,629,679 'mcp-gw':79,254,508,540,574,660 'metric':95,179,289 'monitor':283 'multipl':501 'name':250,365,459,644 'need':347,441,573 'network':34,269 'onto':31,266 'param':674 'peer':300,316,332,410,426,507,523,539,557 'per':234 'pilot':2,33,83,87,91,94,107,111,115,129,132,135,139,167,171,175,178,186,190,194,203,206,209,213,259,268,271,278,281,288,374,383,385,393,396,468,477,485,494,676,703 'pilot-a2a-bridge':106,185,373 'pilot-announce-cap':134,208,484 'pilot-api-gateway':86,170,270 'pilot-audit-log':114,193,395 'pilot-directori':128,202,467 'pilot-discov':131,205,476 'pilot-health':90,174,280 'pilot-load-balanc':138,212,493 'pilot-mcp-bridg':82,166,258 'pilot-mcp-bridge-fleet-setup':1 'pilot-metr':93,177,287 'pilot-protocol':702 'pilot-task-rout':110,189,384 'pilotctl':635,657,684,706 'pilotprotocol.network':699 'port':304,320,336,414,430,511,527,543,561,591,602,613,623 'prefix':155 'procedur':146 'protocol':120,380,403,648,677,704 'provid':502 'publish':637,659,686 'purpos':75 'queri':481,675 'receiv':315,425,506,522 'regist':309,311,419,421,516,532,632,643 'registr':490,520,536,590,601 'registri':46,70,124,127,199,231,303,319,335,350,413,429,444,447,457,461,465,587,598,606,617,640,653,689 'requir':701 'result':341,345,683,692,697 'return':682 'role':71,72,153,235,245,249,360,364,454,458 'rout':388,405,439,550,568,612,622,654 'router':113,192,387 'run':712 'search':647,673 'send':299,331,409,538,556 'serv':479 'server':27,99,265,285 'set':218 'setup':6,60,145,240,355,449 'skill':19,74,159,257,372,466,705 'skill-pilot-mcp-bridge-fleet-setup' 'source-teoslayer' 'step':147,156,216,225 'task':112,191,386,389,404,438,569,621 'templat':233 'throughput':293 'tool':45,69,98,123,126,143,198,264,275,291,302,308,313,318,324,328,334,340,343,349,412,418,428,434,443,446,456,460,464,475,489,498,515,519,531,547,551,565,586,589,597,605,610,616,634,639,642,652,664,670,688,691 'tool-cal':323,433,546,564,663 'tool-regist':307,417,514,530,641 'tool-registri':122,125,197,301,317,333,348,411,427,442,445,455,463,585,596,604,615,638,651,687 'tool-result':339,690 'topic':306,322,338,416,432,513,529,545,563 'topic-agent-skills' 'topic-ai-agents' 'topic-clawhub' 'topic-networking' 'topic-openclaw' 'topic-overlay-network' 'topic-p2p' 'topic-pilot-protocol' 'track':290 'url':698 'use':17 'user':22,36,49,151 'want':23 'web':646,672 'web-search':645,671 'workflow':625 'write':221","prices":[{"id":"d0ca5557-d8a2-4fc3-9f6e-fd9feb1b0d53","listingId":"439797e4-be5c-4061-906d-7fa25b839732","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"TeoSlayer","category":"pilot-skills","install_from":"skills.sh"},"createdAt":"2026-05-18T13:22:43.473Z"}],"sources":[{"listingId":"439797e4-be5c-4061-906d-7fa25b839732","source":"github","sourceId":"TeoSlayer/pilot-skills/pilot-mcp-bridge-fleet-setup","sourceUrl":"https://github.com/TeoSlayer/pilot-skills/tree/main/skills/pilot-mcp-bridge-fleet-setup","isPrimary":false,"firstSeenAt":"2026-05-18T13:22:43.473Z","lastSeenAt":"2026-05-18T19:14:57.918Z"}],"details":{"listingId":"439797e4-be5c-4061-906d-7fa25b839732","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"TeoSlayer","slug":"pilot-mcp-bridge-fleet-setup","github":{"repo":"TeoSlayer/pilot-skills","stars":6,"topics":["agent-skills","ai-agents","clawhub","networking","openclaw","overlay-network","p2p","pilot-protocol"],"license":"agpl-3.0","html_url":"https://github.com/TeoSlayer/pilot-skills","pushed_at":"2026-05-13T06:08:49Z","description":"80+ agent skills for Pilot Protocol — communication, file transfer, trust, task routing, swarm coordination, and more","skill_md_sha":"8d8b22e5ace3509bb3c1e1e38a8831d91eac0e0a","skill_md_path":"skills/pilot-mcp-bridge-fleet-setup/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/TeoSlayer/pilot-skills/tree/main/skills/pilot-mcp-bridge-fleet-setup"},"layout":"multi","source":"github","category":"pilot-skills","frontmatter":{"name":"pilot-mcp-bridge-fleet-setup","license":"AGPL-3.0","description":"Deploy an MCP and A2A bridge fleet with 3 agents.  Use this skill when: 1. User wants to bridge MCP servers or A2A agents onto the Pilot network 2. User is configuring an MCP gateway, A2A bridge, or tool registry agent 3. User asks about connecting different agent ecosystems over Pilot tunnels  Do NOT use this skill when: - User wants a single MCP bridge (use pilot-mcp-bridge instead) - User wants a single A2A connection (use pilot-a2a-bridge instead)"},"skills_sh_url":"https://skills.sh/TeoSlayer/pilot-skills/pilot-mcp-bridge-fleet-setup"},"updatedAt":"2026-05-18T19:14:57.918Z"}}