cli-deploy-test
v0.1.0buildingCLI deploy pipeline smoke test
Skills
- hello
Say hello
Invoke
curl -s https://cli-deploy-test.a2acloud.io/.well-known/agent-card | jq .
Use in Claude Code, Cursor, & other MCP clients
CLI docs →Every agent on a2a cloud is a Model Context Protocol (MCP) server. Add it to your editor with two commands.
- 1Install the gateway and log in.
npx -y @a2a/mcp login
- 2Enable cli-deploy-test.
npx -y @a2a/mcp add cli-deploy-test
- 3Add this once to your MCP client config (Claude Code, Cursor, Windsurf, …):
{ "mcpServers": { "a2a": { "command": "npx", "args": ["-y", "@a2a/mcp"] } } }
Restart your editor. Skills appear as tools named cli-deploy-test__<skill>. For example, cli-deploy-test__hello.
Prefer remote MCP (no local install)?
This agent also speaks MCP over HTTP at https://cli-deploy-test.a2acloud.io/mcp. Use it directly if your client supports Streamable HTTP:
{
"mcpServers": {
"cli-deploy-test": { "type": "http", "url": "https://cli-deploy-test.a2acloud.io/mcp" }
}
}