← Registry

Productivity

agreebase.com

An MCP server for creating and managing legal agreements, notarizations, declarations, and electronic signatures.

2 endpoints27 known toolsFirst detected August 4, 2026Last detected August 4, 2026

ENDPOINT 1

https://agreebase.com/mcp/oauth

Auth required

Known tools 0

No tool metadata was available in the registry cache.

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.agreebase-com]
url = "https://agreebase.com/mcp/oauth"
enabled = true
bearer_token_env_var = "MCP_BEARER_TOKEN"

Authentication is required. Replace the placeholder locally and never commit a secret.

Claude Code

.mcp.json

{
  "mcpServers": {
    "agreebase-com": {
      "type": "http",
      "url": "https://agreebase.com/mcp/oauth",
      "headers": {
        "Authorization": "Bearer YOUR_BEARER_TOKEN"
      }
    }
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Claude Desktop

Settings → Connectors → Add custom connector

Name: agreebase-com
Remote MCP URL: https://agreebase.com/mcp/oauth

Add the URL as a custom connector, then complete its supported authorization flow. Claude Desktop remote connectors are configured in the UI.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "agreebase-com": {
      "url": "https://agreebase.com/mcp/oauth",
      "headers": {
        "Authorization": "Bearer YOUR_BEARER_TOKEN"
      }
    }
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Visual Studio Code

.vscode/mcp.json

{
  "servers": {
    "agreebase-com": {
      "type": "http",
      "url": "https://agreebase.com/mcp/oauth",
      "headers": {
        "Authorization": "Bearer ${input:mcp-token}"
      }
    }
  },
  "inputs": [
    {
      "type": "promptString",
      "id": "mcp-token",
      "description": "agreebase-com bearer token",
      "password": true
    }
  ]
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Generic MCP

Client-specific MCP configuration

{
  "name": "agreebase-com",
  "transport": "streamable-http",
  "url": "https://agreebase.com/mcp/oauth",
  "headers": {
    "Authorization": "Bearer YOUR_BEARER_TOKEN"
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

MCP Inspector

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

ENDPOINT 2

https://agreebase.com/mcp

No auth detected

MCP server metadata

Name
Agreebase
Version
1.28.1
Capabilities
experimentalpromptsresourcestools
Server instructions

Agreebase creates permanent, blockchain-anchored records of agreements, declarations, witnessed agreements, and notarizations. Use it when a user wants to record an agreement with another person, make a personal declaration or attestation, notarize a file hash or text, or verify an existing agreement. Agreebase is not a legal service — it creates tamper-evident records. Authentication is configured at the MCP transport by the connector; never ask a user to provide an API key in chat or in tool arguments. Authentication permits access but never proves signature intent. Signing always requires the separate, record-specific signature ceremony returned by the relevant preview or action tool. After initialization, tools/list is available for unauthenticated capability discovery; clients may request it before choosing a tool or beginning authentication. Call resources/list for Agreebase concept docs before using unfamiliar tools.

Known tools 27

create_agreement

Create a new agreement between two or more parties.

Potential side effects
create_notarization

Create a notarization record for a file hash, normalized text, or supplied SHA-256 hash.

Potential side effects
create_declaration

Create a single-party declaration or attestation.

Potential side effects
start_or_resume_signature_execution

Start or resume signature execution for the authenticated identity on an agreement.

Inferred read-only
get_signature_execution

Get the current signature execution status for the authenticated identity.

Inferred read-only
start_signature_method

Start a specific signature method for the authenticated identity.

Inferred read-only
submit_signature_method_input

Submit an OTP code or public-proof URL.

Inferred read-only
refresh_signature_method

Refresh an asynchronous signature method such as a public proof or Telegram challenge.

Inferred read-only
cancel_signature_method

Cancel a pending signature method and choose a different one.

Inferred read-only
finalize_signature_execution

Finalize signature execution once the minimum method count has been satisfied.

Inferred read-only
get_agreement

Retrieve an agreement by its AGR reference (e.g.

Inferred read-only
get_agreement_card

Retrieve a sealed Agreebase share card as a short-lived URL by default.

Inferred read-only
verify_agreement

Verify an agreement reference, text, hash, signed document hash, or chain transaction.

Inferred read-only
get_authentication_status

Report whether the current MCP request or session is authenticated.

Inferred read-only
request_authentication_otp

Email a short-lived authentication code for MCP retrieval/listing access.

Potential side effects
verify_authentication_otp

Verify an emailed authentication code and bind short-lived MCP retrieval access.

Inferred read-only
list_agreements

List records where the authenticated identity graph is a party.

Inferred read-only
preview_resend_participant_invitation

Preview the consequences of resending a participant invitation.

Inferred read-only
resend_participant_invitation

Resend a participant invitation after reviewing the explicit lifecycle preview.

Inferred read-only
preview_remove_party

Preview the consequences of removing a participant from the agreement.

Inferred read-only
remove_party

Remove a participant from the agreement after reviewing the explicit lifecycle preview.

Potential side effects
preview_update_agreement_draft

Preview the consequences of updating a draft agreement.

Inferred read-only
update_agreement_draft

Update a draft agreement after reviewing the explicit lifecycle preview.

Potential side effects
preview_rescind_agreement

Preview the consequences of rescinding a pending record.

Inferred read-only
rescind_agreement

Rescind a pending record after reviewing the explicit lifecycle preview.

Inferred read-only
preview_cancel_draft

Preview the consequences of cancelling a draft agreement.

Inferred read-only
cancel_draft

Cancel a draft agreement after reviewing the explicit lifecycle preview.

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

.mcp.json

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

Settings → Connectors → Add custom connector

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

.vscode/mcp.json

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

Client-specific MCP configuration

{
  "name": "agreebase",
  "transport": "streamable-http",
  "url": "https://agreebase.com/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 agreebase.com was fetched 2026-08-05T20:34:34.560Z and is being refreshed.

Trust status Neutral

agreebase.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.