← Registry

AI & Machine Learning

agent-utils.ai

Provides persistent key-value storage with TTL extension for AI agent memory.

5 endpoints69 known toolsFirst detected July 2, 2026Last detected September 22, 2026

ENDPOINT 1

https://memory.agent-utils.ai/mcp

No auth detected

MCP server metadata

Name
agent-utils-memory
Version
1.0.0
Capabilities
promptsresourcestools

Known tools 17

get_memory

Retrieve a stored value by namespace and key.

Inferred read-only
put_memory

Create a new memory entry.

Potential side effects
replace_memory

Update an existing memory entry.

Potential side effects
extend_memory_ttl

Extend the storage lifetime of an existing memory by N months.

Inferred read-only
delete_memory

Delete a stored value.

Potential side effects
list_keys

List keys in a namespace with metadata (created_at, updated_at, updated_count, ttl, priority, last_modified_key_id).

Inferred read-only
top_memories

Return the top N highest-priority non-expired keys in a namespace, ordered by priority descending.

Inferred read-only
list_namespaces

List all namespaces for this account.

Inferred read-only
search_by_tag

Find (namespace, key) pairs with a given tag.

Inferred read-only
get_account

Get account status, credit balance, and available credits.

Inferred read-only
list_api_keys

List all API keys on this account.

Inferred read-only
create_api_key

Create a new live API key.

Potential side effects
revoke_api_key

Revoke an API key by ID.

Inferred read-only
list_payments

List payment history for this account.

Potential side effects
settle_balance

Charges the saved payment method to settle your outstanding balance.

Potential side effects
submit_exit_feedback

Submit feedback when a trial ends without activation.

Inferred read-only
submit_feature_request

Submit a feature request or product feedback.

Inferred read-only

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-memory]
url = "https://memory.agent-utils.ai/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "agent-utils-memory": {
      "type": "http",
      "url": "https://memory.agent-utils.ai/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: agent-utils-memory
Remote MCP URL: https://memory.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-memory": {
      "url": "https://memory.agent-utils.ai/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "agent-utils-memory": {
      "type": "http",
      "url": "https://memory.agent-utils.ai/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "agent-utils-memory",
  "transport": "streamable-http",
  "url": "https://memory.agent-utils.ai/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

ENDPOINT 2

https://mutex.agent-utils.ai/mcp

No auth detected

MCP server metadata

Name
agent-utils-mutex
Version
1.0.0
Capabilities
promptsresourcestools

Known tools 13

acquire_lock

Attempt to acquire an exclusive lock on a resource.

Inferred read-only
release_lock

Release a lock you hold, immediately freeing the resource for other agents.

Inferred read-only
extend_lock

Add time to a lock you already hold.

Inferred read-only
check_lock

Read-only status check for a resource lock.

Inferred read-only
list_active_locks

List all currently active locks held by this account.

Inferred read-only
get_account

Get account status, credit balance, and available credits.

Inferred read-only
list_api_keys

List all API keys on this account.

Inferred read-only
create_api_key

Create a new live API key.

Potential side effects
revoke_api_key

Revoke an API key by ID.

Inferred read-only
list_payments

List payment history for this account.

Potential side effects
settle_balance

Charges the saved payment method to settle your outstanding balance.

Potential side effects
submit_exit_feedback

Submit feedback when a trial ends without activation.

Inferred read-only
submit_feature_request

Submit a feature request or product feedback.

Inferred read-only

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-mutex]
url = "https://mutex.agent-utils.ai/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "agent-utils-mutex": {
      "type": "http",
      "url": "https://mutex.agent-utils.ai/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: agent-utils-mutex
Remote MCP URL: https://mutex.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-mutex": {
      "url": "https://mutex.agent-utils.ai/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "agent-utils-mutex": {
      "type": "http",
      "url": "https://mutex.agent-utils.ai/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "agent-utils-mutex",
  "transport": "streamable-http",
  "url": "https://mutex.agent-utils.ai/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

ENDPOINT 3

https://idempotency.agent-utils.ai/mcp

No auth detected

MCP server metadata

Name
agent-utils-idempotency
Version
1.0.0
Capabilities
promptsresourcestools

Known tools 16

list_operation_rules

List all operation rules registered for this account.

Inferred read-only
create_operation_rule

Register a new operation rule that defines how to construct idempotency keys for a given operation type.

Inferred read-only
delete_operation_rule

Delete an operation rule by name.

Potential side effects
cleanup_operation_rules

Delete operation rules that have no active idempotency keys and were created more than 30 days ago.

Potential side effects
acquire_key

Atomically check-and-set an idempotency key.

Inferred read-only
complete_key

Mark an idempotency key as 'complete' after the operation succeeded.

Inferred read-only
fail_key

Mark an idempotency key as 'failed' after the operation did not complete successfully.

Inferred read-only
check_key

Read-only status check for an idempotency key.

Inferred read-only
get_account

Get account status, credit balance, and available credits.

Inferred read-only
list_api_keys

List all API keys on this account.

Inferred read-only
create_api_key

Create a new live API key.

Potential side effects
revoke_api_key

Revoke an API key by ID.

Inferred read-only
list_payments

List payment history for this account.

Potential side effects
settle_balance

Charges the saved payment method to settle your outstanding balance.

Potential side effects
submit_exit_feedback

Submit feedback when a trial ends without activation.

Inferred read-only
submit_feature_request

Submit a feature request or product feedback.

Inferred read-only

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.

ENDPOINT 4

https://webhook-inbox.agent-utils.ai/mcp

No auth detected

MCP server metadata

Name
agent-utils-webhook-inbox
Version
1.0.0
Capabilities
promptsresourcestools

Known tools 14

create_inbox

Create a temporary webhook inbox.

Potential side effects
poll_inbox

Consume all unread messages from an inbox (oldest first).

Inferred read-only
delete_inbox

Delete an inbox and all its messages immediately.

Potential side effects
list_inboxes

List all active (non-expired) inboxes for this account, including per-inbox message counts.

Potential side effects
cleanup_expired

Delete all expired inboxes and their messages.

Potential side effects
configure_inbox_settings

Set the default max_messages for future create_inbox calls on this account.

Inferred read-only
get_account

Get account status, credit balance, and available credits.

Inferred read-only
list_api_keys

List all API keys on this account.

Inferred read-only
create_api_key

Create a new live API key.

Potential side effects
revoke_api_key

Revoke an API key by ID.

Inferred read-only
list_payments

List payment history for this account.

Potential side effects
settle_balance

Charges the saved payment method to settle your outstanding balance.

Potential side effects
submit_exit_feedback

Submit feedback when a trial ends without activation.

Inferred read-only
submit_feature_request

Submit a feature request or product feedback.

Inferred read-only

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-webhook-inbox]
url = "https://webhook-inbox.agent-utils.ai/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "agent-utils-webhook-inbox": {
      "type": "http",
      "url": "https://webhook-inbox.agent-utils.ai/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: agent-utils-webhook-inbox
Remote MCP URL: https://webhook-inbox.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-webhook-inbox": {
      "url": "https://webhook-inbox.agent-utils.ai/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "agent-utils-webhook-inbox": {
      "type": "http",
      "url": "https://webhook-inbox.agent-utils.ai/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "agent-utils-webhook-inbox",
  "transport": "streamable-http",
  "url": "https://webhook-inbox.agent-utils.ai/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

ENDPOINT 5

https://math.agent-utils.ai/mcp

No auth detected

MCP server metadata

Name
agent-utils-math
Version
1.0.0
Capabilities
promptsresourcestools

Known tools 9

eval_expr

Evaluate a mathematical expression and return the result.

Inferred read-only
get_account

Get account status, credit balance, and available credits.

Inferred read-only
list_api_keys

List all API keys on this account.

Inferred read-only
create_api_key

Create a new live API key.

Potential side effects
revoke_api_key

Revoke an API key by ID.

Inferred read-only
list_payments

List payment history for this account.

Potential side effects
settle_balance

Charges the saved payment method to settle your outstanding balance.

Potential side effects
submit_exit_feedback

Submit feedback when a trial ends without activation.

Inferred read-only
submit_feature_request

Submit a feature request or product feedback.

Inferred read-only

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-math]
url = "https://math.agent-utils.ai/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "agent-utils-math": {
      "type": "http",
      "url": "https://math.agent-utils.ai/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: agent-utils-math
Remote MCP URL: https://math.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-math": {
      "url": "https://math.agent-utils.ai/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "agent-utils-math": {
      "type": "http",
      "url": "https://math.agent-utils.ai/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "agent-utils-math",
  "transport": "streamable-http",
  "url": "https://math.agent-utils.ai/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

TRUST AND VERIFICATION EVIDENCE

Trust Data Available

BuiltWith Trust API v2 evidence for agent-utils.ai was fetched 2026-09-03T21:40:07.205Z.

Trust status Neutral

agent-utils.ai is assessed as Neutral: No suspicious signals found, but no strong positive signal either

Indexed

Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.