← Registry

General Tools

cofferline.com

Provides general-purpose tools through the Model Context Protocol.

x402 supported1 endpoint47 known toolsFirst detected August 21, 2026Last detected August 21, 2026

ENDPOINT 1

https://mcp.cofferline.com

No auth detected

MCP server metadata

Name
Cofferline MCP
Version
46070b00a3738dd0cc40bb9b670d73020a1b9e87
Capabilities
tools
Server instructions

Treasury infrastructure for autonomous agents. Public tools (quotes, benchmarks, screening, tokens, feedback list, SIWE login) need no auth; everything else forwards your Authorization header (cl_key_… API key or cl_sess_… session) to the API unchanged. This server never holds keys: flows that need a signature (SIWE, delegation digests, x402 payments, client-signed Polymarket orders) return the exact material to sign and name the tool that accepts the signature. The operator /v1/admin surface is deliberately not exposed here.

Known tools 47

get_quotes

Live venue quote comparison for a token conversion (CoW + ParaSwap on Base).

Inferred read-only
get_benchmarks

Measured execution benchmarks: median savings vs arrival quote by USD size bucket, from real completed intents only.

Inferred read-only
screen_address

OFAC SDN counterparty screening for an address.

Inferred read-only
list_tokens

Tokens the platform accepts on an intent, per chain — what create_intent will admit.

Inferred read-only
list_feedback

Every feature request ever submitted, public and unauthenticated.

Inferred read-only
submit_feedback

Submit a feature request ($1 anti-spam fee, charged to the prepaid balance when funded).

Inferred read-only
start_siwe_login

Start wallet sign-in: returns a single-use SIWE message.

Potential side effects
complete_siwe_login

Finish wallet sign-in: exchanges the signed SIWE message for a cl_sess_… session token — use it as the Authorization bearer on every authenticated tool.

Potential side effects
get_me

Identify the authenticated account: address, kind, scopes.

Inferred read-only
export_account

Export all of this account's data in one document.

Inferred read-only
offboard_account

Close this account for good: revokes every credential, scrubs personal data, retires the account.

Inferred read-only
put_policy

Create or update the wallet's treasury policy (immutable versioning; PUT creates the next version).

Potential side effects
get_policy

List policy versions, newest first (the first entry is active).

Inferred read-only
check_spend

Pre-flight policy check: would this spend be allowed under the wallet's policy right now?

Inferred read-only
check_pm_order

Pre-flight policy check for a prediction-market order: would this cost be allowed right now?

Inferred read-only
poll_events

Poll typed treasury events with a monotonic cursor (intent lifecycle, budget thresholds, reconciliation, security alerts).

Inferred read-only
get_statement

Deterministic monthly statement derived from the append-only ledger — same period, same bytes.

Inferred read-only
create_intent

Create a conversion or gas_topup intent; the executor pipeline plans and fills it under policy.

Potential side effects
get_intent

Fetch an intent, including fills and the post-trade report once filled.

Potential side effects
list_intents

List intents, newest first.

Inferred read-only
cancel_intent

Cancel a planned intent (a few-second window before execution claims it).

Inferred read-only
prepare_delegation

Prepare a scoped session-key grant for a Kernel smart account: exact call allowlist, expiry, optional rate limit.

Inferred read-only
confirm_delegation

Activate a prepared delegation by supplying the owner's signature over its enable digest.

Inferred read-only
renew_delegation

Renew an active delegation: same scope, fresh expiry, no authority gap.

Inferred read-only
revoke_delegation

Revoke a delegation.

Inferred read-only
get_delegation

Fetch one delegation.

Inferred read-only
list_delegations

List delegations, newest first.

Inferred read-only
panic

Emergency stop, one call: suspends the account, revokes every API key, session, delegation and venue credential, and returns all unwind calldata for the owner.

Inferred read-only
get_balance

Prepaid fee balance: settled credits minus fee debits.

Inferred read-only
topup_balance

Top up the prepaid balance with USDC.

Inferred read-only
set_auto_topup

Configure auto-topup: when the prepaid balance falls below threshold_usd, the platform settles one of the pre-signed EIP-3009 authorizations you supply (signed outside MCP — this server cannot sign).

Inferred read-only
get_auto_topup

The auto-topup rule and how many pre-signed authorizations remain.

Inferred read-only
remove_auto_topup

Remove the auto-topup rule and its unused authorizations.

Potential side effects
store_pm_credential

Store a prediction-market venue credential (verified live against the venue, sealed at rest, material never returned).

Inferred read-only
list_pm_credentials

List stored venue credentials — metadata only, never material.

Inferred read-only
revoke_pm_credential

Revoke a venue credential; its sealed ciphertext is destroyed.

Inferred read-only
get_pm_signer_rotation

Calldata to swap the Polymarket funder Safe's owner to a new EOA — the owner executes it outside MCP (this server cannot sign).

Inferred read-only
create_pm_order

Place a prediction-market limit order under policy, signed server-side with the stored credential.

Inferred read-only
list_pm_orders

The credential's resting orders straight from the venue — recover state after a disconnect.

Inferred read-only
cancel_pm_order

Cancel one resting prediction-market order.

Inferred read-only
cancel_all_pm_orders

Cancel every resting order for the credential, optionally within one market.

Inferred read-only
prepare_pm_order

Prepare a client-signed Polymarket order: policy-checked, then returns the exact EIP-712 payload to sign outside MCP (this server cannot sign) plus a prepare_id — submit both via submit_pm_order.

Inferred read-only
submit_pm_order

Submit a prepared Polymarket order with the maker's EIP-712 signature from prepare_pm_order.

Inferred read-only
get_pm_onboarding

Polymarket trade-readiness for an address: live approval status plus the calldata for anything missing (executed outside MCP — this server cannot sign).

Potential side effects
resolve_pm_funder

Resolve an owner EOA to its Polymarket funder Safe candidates.

Inferred read-only
sync_pm_fills

Pull the venue's fills for a credential into the wallet's ledger.

Inferred read-only
wrap_pm_usdc

Wrap the funder Safe's USDC.

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.cofferline-mcp]
url = "https://mcp.cofferline.com"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "cofferline-mcp": {
      "type": "http",
      "url": "https://mcp.cofferline.com"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: cofferline-mcp
Remote MCP URL: https://mcp.cofferline.com

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": {
    "cofferline-mcp": {
      "url": "https://mcp.cofferline.com"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "cofferline-mcp": {
      "type": "http",
      "url": "https://mcp.cofferline.com"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "cofferline-mcp",
  "transport": "streamable-http",
  "url": "https://mcp.cofferline.com"
}
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 cofferline.com was fetched 2026-08-24T03:30:35.954Z.

Trust status Neutral

cofferline.com 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.