Featured

Deploy OpenClaw in 60 seconds β€” 20% off logoDeploy OpenClaw in 60 seconds β€” 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger β†’
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger β†’
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free β†’
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free β†’
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data β€” no proxies, no parsers, no maintenance.

Start building free β†’
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it β€” secured from day one.

Get it set up for you β†’
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free β†’
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here β†’

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

ze6ad36390 MCP server](https://glama.ai/mcp/servers/ze6ad36390/badges/score.svg)](https://glama.ai/mcp/servers/ze6ad36390) 🐍 ☁️ 🍎 πŸͺŸ 🐧 - Third-party certifying proxy β€” sign any HTTP call (AI agents, webhooks, microservices) with an independent Ed25519...

README.md

ArkForge Trust Layer β€” MCP Server

Third-party certifying proxy β€” get an independent cryptographic proof for any HTTP call.

Works with AI agents, webhooks, microservices, or any HTTP client. The proof is signed by ArkForge (independent third party) β€” not by the caller.

Get your free API key (500 proofs/month) β†’

<a href="https://glama.ai/mcp/servers/ark-forge/arkforge-mcp"> <img width="380" height="200" src="https://glama.ai/mcp/servers/ark-forge/arkforge-mcp/badge" alt="ArkForge Trust Layer MCP server" /> </a>

---

Why this matters

When a system makes an HTTP call, there is no independent record of what was sent, what was received, or when it happened. Either party could deny or alter the transaction.

ArkForge fixes this by acting as a certifying proxy: the caller routes its request through ArkForge, which signs the full request+response bundle with an Ed25519 key, timestamps it via RFC 3161, and anchors it in Sigstore Rekor β€” an immutable, publicly auditable log.

The resulting proof is permanently verifiable at a public URL, by anyone, without contacting ArkForge.

This is the difference between a self-signed certificate and a CA-issued one. Other tools produce proofs signed by the caller itself. ArkForge produces proofs signed by an independent third party.

---

Use cases

  • AI agents β€” audit trail for every external API call (Claude, GPT, Mistral, LangChain, AutoGen)
  • Webhooks β€” prove a Stripe or GitHub event was received with this exact payload
  • Microservices β€” tamper-evident log between internal services (compliance, fintech)
  • Data providers β€” prove an external API returned this value at this timestamp
  • Automations β€” certify an action in an n8n or Zapier workflow

---

Installation

{
  "mcpServers": {
    "arkforge": {
      "command": "uvx",
      "args": ["arkforge-mcp"],
      "env": {
        "ARKFORGE_API_KEY": "your_api_key_here"
      }
    }
  }
}

Get a free API key (500 proofs/month) at arkforge.tech.

---

Tools

certify_call

Route an HTTP call through ArkForge and get a cryptographic proof of the transaction.

target          URL of the upstream API to call
payload         JSON body (optional)
method          "POST" or "GET" (default: "POST")
description     Human-readable description included in the proof
agent_identity  Identifier for the calling system (optional)

Returns proof_id, verification_url, upstream_response, chain_hash, timestamp, and Ed25519 signature.

Use this instead of calling the API directly when you need an auditable record.

Example response:

{
  "proof_id": "prf_20260310_143022_a1b2c3",
  "verification_url": "https://trust.arkforge.tech/v1/proof/prf_20260310_143022_a1b2c3",
  "upstream_response": { "status": "ok" },
  "chain_hash": "e3b0c44298fc1c149afb...",
  "timestamp": "2026-03-10T14:30:22.481Z",
  "timestamp_authority": "verified",
  "rekor_log_id": "https://rekor.sigstore.dev/api/v1/log/entries/...",
  "seller": "api.example.com",
  "signature": "MCowBQYDK2VwAyEA..."
}

get_proof

Retrieve the full proof bundle for a given proof_id.

verify_proof

Get a human-readable summary of what a proof certifies β€” useful for explaining to a user or auditor what was independently verified.

get_usage

Check your remaining credits for the current month.

---

What each proof contains

| Field | Description | |---|---| | proof_id | Unique identifier β€” permanent public URL | | hashes.request | SHA-256 of the exact request sent | | hashes.response | SHA-256 of the exact response received | | hashes.chain | Combined hash β€” tamper-evident | | parties.seller | Domain of the called API | | timestamp_authority | RFC 3161 timestamp via FreeTSA (QTSP eIDAS on Enterprise) | | rekor | Sigstore Rekor immutable log entry | | arkforge_signature | Ed25519 signature by ArkForge's independent key |

---

Pricing

| Plan | Proofs/month | Price | |---|---|---| | Free | 500 | €0 | | Pro | 5,000 | €29/month | | Enterprise | 50,000 + QTSP eIDAS | €149/month |

Get your API key β†’

---

REST API

The MCP server is one integration path. The same API works from any language or framework:

curl -X POST https://trust.arkforge.tech/v1/proxy \
  -H "X-Api-Key: your_key" \
  -H "Content-Type: application/json" \
  -d '{"target": "https://api.example.com/action", "payload": {"data": "value"}}'

See related servers & alternatives β†’

Related MCP servers

Browse all β†’

Related guides

Hand-picked reading to help you choose and use Other servers.