Third-party cryptographic proof for AI agent API calls — ArkForge Trust Layer MCP server
Project description
ArkForge Trust Layer — MCP Server
Third-party cryptographic proof for AI agent API calls.
Works with Claude, GPT-4, Mistral, LangChain, AutoGen, or any HTTP client. The proof is signed by ArkForge (independent third party) — not by your agent.
Why this matters
When an AI agent calls an external API, there is no independent record of what was sent, what was received, or when it happened. The agent could lie. The API could lie. There is no verifiable audit trail.
ArkForge fixes this by acting as a certifying proxy: the agent routes its API call 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. Tools like PiQrypt or Attestix produce proofs signed by the agent itself. ArkForge produces proofs signed by an independent third party.
Installation
# Claude Desktop — add to claude_desktop_config.json:
{
"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
Call an external API 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 agent (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://arkforge.tech/trust/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 |
Works with any agent framework
The MCP server is one integration path. The same REST API works from any language or framework:
curl -X POST https://arkforge.tech/trust/v1/proxy \
-H "X-Api-Key: your_key" \
-H "Content-Type: application/json" \
-d '{"target": "https://api.example.com/action", "payload": {"data": "value"}}'
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file arkforge_mcp-1.0.0.tar.gz.
File metadata
- Download URL: arkforge_mcp-1.0.0.tar.gz
- Upload date:
- Size: 6.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f88796431dfd17f74ed2b491daf22823b31904680d034e29b431b9bf7bbba5c8
|
|
| MD5 |
00a0da879ed349861e78897c43439f9e
|
|
| BLAKE2b-256 |
4f80deea5e04d08c8cc1a4e994c8b7f7ba5fa69039a8b2d6531351b216ece92d
|
File details
Details for the file arkforge_mcp-1.0.0-py3-none-any.whl.
File metadata
- Download URL: arkforge_mcp-1.0.0-py3-none-any.whl
- Upload date:
- Size: 7.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
047ce054779a1a6727cad332a9e58c99f57adacb2598cf947c2152089eb9cc1a
|
|
| MD5 |
8f30acbd350a5c96d10c9b8112532d88
|
|
| BLAKE2b-256 |
2ac7ede462a180f04cb960ea7b024924685a22a0c482e3357be31024707d8f9b
|