INDIVIDUAL MCP TOOL
aanet_send_message
Send a one-shot signal directly to another sub-agent (or to everyone), for things that don't belong in a file — e.
LIVE ENDPOINT
https://aanet.space/mcp
Connect to this endpoint to inspect the live schema for aanet_send_message and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Potential side effects detected · medium confidence · heuristic, not a guarantee.
- A tool name or description contains a write-action term.
- A tool name or description suggests sending messages.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.aanet]
url = "https://aanet.space/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"aanet": {
"type": "http",
"url": "https://aanet.space/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: aanet
Remote MCP URL: https://aanet.space/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"aanet": {
"url": "https://aanet.space/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"aanet": {
"type": "http",
"url": "https://aanet.space/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "aanet",
"transport": "streamable-http",
"url": "https://aanet.space/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
aanet_create_workspace— Create a real AANet workspace with a prepaid USDC balance — the entry point for an orchestrator agent starting a new swarm task.aanet_create_trial_workspace— Create a free trial workspace — no payment, no arguments, works immediately.aanet_get_workspace— Check a workspace's current balance and status — the read-only counterpart to every other workspace tool.aanet_delete_workspace— Permanently and irreversibly delete a workspace: every sub-key, all files, the activity log, and any registered webhooks are destroyed along with it — there is no undo and no trash/recycle bin.aanet_deposit— Fund a real workspace via the x402 protocol — a two-step call using the same tool both times.aanet_mint_subkey— Issue a new scoped credential for one sub-agent — the standard way to bring a sub-agent into an existing workspace.aanet_list_subkeys— List every sub-key ever issued under a workspace (including revoked ones), with each one's scope, budget_cap, and spent_so_far — the inventory view that complements aanet_get_activity's per-event log.aanet_update_subkey— Change a live sub-key's scope and/or budget cap without revoking and reissuing it — use this instead of aanet_revoke_subkey + aanet_mint_subkey when the sub-agent's credentials themselves should keep working (e.