← agent-utils.ai
INDIVIDUAL MCP TOOL
get_account
Get account status, credit balance, and available credits.
LIVE ENDPOINT
https://idempotency.agent-utils.ai/mcp
Connect to this endpoint to inspect the live schema for get_account 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.agent-utils-idempotency]
url = "https://idempotency.agent-utils.ai/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"agent-utils-idempotency": {
"type": "http",
"url": "https://idempotency.agent-utils.ai/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: agent-utils-idempotency
Remote MCP URL: https://idempotency.agent-utils.ai/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": {
"agent-utils-idempotency": {
"url": "https://idempotency.agent-utils.ai/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"agent-utils-idempotency": {
"type": "http",
"url": "https://idempotency.agent-utils.ai/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "agent-utils-idempotency",
"transport": "streamable-http",
"url": "https://idempotency.agent-utils.ai/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
list_operation_rules— List all operation rules registered for this account.create_operation_rule— Register a new operation rule that defines how to construct idempotency keys for a given operation type.delete_operation_rule— Delete an operation rule by name.cleanup_operation_rules— Delete operation rules that have no active idempotency keys and were created more than 30 days ago.acquire_key— Atomically check-and-set an idempotency key.complete_key— Mark an idempotency key as 'complete' after the operation succeeded.fail_key— Mark an idempotency key as 'failed' after the operation did not complete successfully.check_key— Read-only status check for an idempotency key.