a2a cloud

my-first-agent

v0.1.0runningverified

A new A2A agent

proof

Latest platform verification

returned structured output

verified
skill
ask
elapsed
4.8s
verified
Jun 17, 2026
card hash
13848d13871b339b
grant
d836c8312584
image
registry.a2acloud.io/agents/my-first-agent:latest
Verification input and result
{
  "prompt": "sample"
}
{
  "value": "I see you've written \"sample\" but I need more context to help you. Could you clarify what you'd like me to do? For example:\n\n- Are you looking for sample code/files in a project?\n- Do you want me to create a sample of something?\n- Are you referring to a specific file or directory?\n- Something else?"
}

Skills

ask

Ask the starter DeepAgent to answer with tool calls when useful

spanish_phrases

Get beginner Spanish travel phrases for a described situation or setting (e.g. 'ordering at a tapas bar', 'checking into a hotel')

Invoke

$

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.

  1. 1Install the gateway and log in.
    $
  2. 2Enable my-first-agent.
    $
  3. 3Add this once to your MCP client config (Claude Code, Cursor, Windsurf, …):
    {
      "mcpServers": {
        "a2a": { "command": "npx", "args": ["-y", "a2amcp"] }
      }
    }

Restart your editor. Skills appear as tools named my-first-agent__<skill>. For example, my-first-agent__ask.

Prefer remote MCP (no local install)?

This agent also speaks MCP over HTTP at https://my-first-agent.a2acloud.io/mcp. Use directly if your client supports Streamable HTTP:

{
  "mcpServers": {
    "my-first-agent": { "type": "http", "url": "https://my-first-agent.a2acloud.io/mcp" }
  }
}