INDIVIDUAL MCP TOOL
aanet_write_file
Overwrite a file's entire content, creating it if it doesn't exist — use aanet_append_file instead if you want to add one entry without replacing what's there.
LIVE ENDPOINT
https://aanet.space/mcp
Connect to this endpoint to inspect the live schema for aanet_write_file and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- No write-capable action terms were found; this is not proof that invocation has no side effects.
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.