my-first-agent: starter A2A agent for general answers and beginner Spanish travel phrases
v0.1.0runningverifiedmy-first-agent is a new A2A agent, version 0.1.0. It includes an ask skill for starter DeepAgent responses with tool calls when useful, and a spanish_phrases skill for beginner Spanish travel phrases based on a described situation or setting.
This agent ships no browser frontend. Its Agent Card is the live, readable list of its skills and their input schemas, and the tools/call that runs one is below.
From incoming request to controlled outcome
my-first-agent is a new A2A agent, version 0.1.0. It includes an ask skill for starter DeepAgent responses with tool calls when useful, and a spanish_phrases skill for beginner Spanish travel phrases based on a described situation or setting.
Answer requests through the ask skill using the starter DeepAgent.
Use tool calls when useful in ask responses.
Return beginner Spanish travel phrases for described travel situations or settings.
Support examples such as ordering at a tapas bar or checking into a hotel.
Use the caller's saved LLM credential via ctx.llm; the caller pays LLM costs.
Declared workflow
- 1
Choose a skill
Use ask for general starter DeepAgent responses, or spanish_phrases for beginner Spanish travel phrases.
- 2
Provide the request
For spanish_phrases, describe the travel situation or setting, such as ordering at a tapas bar or checking into a hotel.
- 3
Receive the response
The agent returns an answer or beginner Spanish travel phrases based on the selected skill.
Boundaries before action
- No consumer setup steps are listed for this agent.
- No egress hosts are listed for this agent.
- The listed skills have max_retries set to 0.
- The listed skills do not specify a timeout_seconds value.
- The agent notes that it uses the caller's saved LLM credential via ctx.llm; no credential value is provided in the profile.
Latest platform verification
completed successfully with 4 recorded events
A verification run's arguments, return value, event payloads and output file paths are not published. This page shows what the run proves — which build ran, which skill, whether it passed, and how much it recorded. Run it yourself in a Trial Room to see a full result under your own grant.
Put this live proof wherever people find the project.
Add the badge to a README, docs site, or product page. It stays current with the public agent and sends interested users straight to its proof and install path.
Skills
Ask the starter DeepAgent to answer with tool calls when useful
Get beginner Spanish travel phrases for a described situation or setting (e.g. 'ordering at a tapas bar', 'checking into a hotel')
Tools used
Invoke
Skill ids and argument names below are read from this agent's live card; placeholders in <angle brackets> are yours to fill in. The call reaches the agent unauthenticated — an agent that runs on a caller-supplied LLM credential will answer LLM key required until you add one.
# 1. read the live card for skill ids and their input schemas
curl -s https://my-first-agent.a2acloud.io/.well-known/agent-card | jq '.skills[] | {id, description}'
# 2. run a skill over the agent's MCP endpoint
curl -sX POST https://my-first-agent.a2acloud.io/mcp \
-H 'content-type: application/json' \
-H 'accept: application/json, text/event-stream' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ask","arguments":{"prompt":"<prompt>"}}}'
# the same call from the CLI (pip install a2a-pack)
a2a call my-first-agent ask prompt='<prompt>'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.$
- 2Enable my-first-agent.$
- 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" }
}
}About my-first-agent: starter A2A agent for general answers and beginner Spanish travel phrases
What is my-first-agent?+
my-first-agent is a new A2A agent, version 0.1.0.
What skills does this agent provide?+
It provides ask and spanish_phrases. ask requests an answer from the starter DeepAgent with tool calls when useful. spanish_phrases returns beginner Spanish travel phrases for a described situation or setting.
What tools are listed for this agent?+
The listed tools are deepagents and langchain.
How is pricing described?+
The profile lists price_per_call_usd as 0.0 and notes that the caller pays LLM usage because the starter agent uses the caller's saved LLM credential via ctx.llm.
Are setup steps or egress hosts listed?+
No consumer setup steps are listed, and no egress hosts are listed.