AgentBureau: The Embodiment Protocol for AI Agents (x402 + MCP)
AgentBureau provides the legal and physical infrastructure for AI agents to operate within the German jurisdiction. We bridge the gap between digital intelligence and real-world action by providing "Embodiment-as-a-Service." Through our API, agents can perform legally binding actions—like sending faxes, mailing physical letters, issuing invoices, forming entire companies (GmbH/UG), ...
README
AgentBureau: The Notary for the agentic age
Website: https://agentbureau.de/
Github: https://github.com/JustinGuese/AgentBureau-402-embodiment-as-a-service
AgentBureau provides the legal and physical infrastructure for AI agents to operate within the German jurisdiction. We bridge the gap between digital intelligence and real-world action by providing "Embodiment-as-a-Service."
Through our API, agents can perform legally binding actions—like sending faxes, mailing physical letters, issuing invoices, forming entire companies (GmbH/UG), handling tax compliance, and opening corporate bank accounts—without needing a bank account, a physical address, or a human identity.
The Core Mechanism: x402 Payment Gating
AgentBureau uses the x402 protocol, an agent-native authentication method where payment is authentication.
- No API Keys: Agents don't need to manage secrets or create accounts.
- Permissionless: Settlement happens on-chain (USDC on Base L2).
- Machine-Readable: Every request returns structured metadata for autonomous handling of 402 "Payment Required" challenges.
Available Services
| Service | Tool Name | Price (USDC) | Delivery Method |
|---|---|---|---|
| Digital Invoice | send_german_invoice |
5.00 | via Lexoffice |
| Physical Letter | send_letter |
3.00 | via Pingen (Germany) |
| Programmatic Fax | send_fax |
1.00 | via Telnyx |
| GmbH Formation | form_german_company |
3,000.00* | HITL Concierge |
| UG Formation | form_german_company |
1,500.00* | HITL Concierge |
| Bank Account | open_bank_account |
500.00 | FinTech Integration |
| VAT Registration | register_vat |
500.00 | Tax Portal Sync |
| VAT Return | submit_vat_return |
100.00 | Monthly/Quarterly |
| Annual Filing | create_annual_filing |
200.00 | Bundesanzeiger |
| Debt Collection | collect_debt |
50.00 | Inkasso Automation |
| EU Presence | eu_presence_bundle |
5,000.00 | Full Legal Shield |
*Formation fees exclude the required share capital (Stammkapital), which is handled via a secure escrow workflow.
Runnable Code Examples
We provide a comprehensive 6×4 matrix of runnable scripts demonstrating how to integrate AgentBureau services across various languages and frameworks. These examples handle the full x402 flow: Challenge → Payment → Retry.
Integration Matrix
| Client / Language | Fax | Letter | Invoice | GmbH |
|---|---|---|---|---|
| cURL / Bash | fax.sh | letter.sh | invoice.sh | gmbh.sh |
| Python (httpx) | fax.py | letter.py | invoice.py | gmbh.py |
| TypeScript (viem) | fax.ts | letter.ts | invoice.ts | gmbh.ts |
| LangChain | fax.py | letter.py | invoice.py | gmbh.py |
| Claude Tool Use | fax.py | letter.py | invoice.py | gmbh.py |
| OpenAI Responses | fax.py | letter.py | invoice.py | gmbh.py |
How to Run the Examples
- Navigate to the examples directory:
cd examples - Configure your environment:
cp .env.example .env # Edit .env with your PRIVATE_KEY (Base network) and RPC_URL - Install and Run:
- Python:
pip install -r <folder>/requirements.txt && python <folder>/<file>.py - TypeScript:
cd typescript && npm install && npx ts-node <file>.ts - Shell:
bash curl/<file>.sh
- Python:
MCP Integration
AgentBureau is MCP Native, served over Streamable HTTP at https://agentbureau-api.datafortress.cloud/mcp. The server exposes 12 tools (one per priced REST endpoint) and 8 prompts (parameterised workflow playbooks).
Quickstart (30 seconds)
The fastest path is the Smithery one-click install for Claude Desktop, ChatGPT, Cursor, or Windsurf. No API key, no parameters — payment is handled per-call via x402.
For direct config, drop this into claude_desktop_config.json:
{
"mcpServers": {
"agentbureau": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://agentbureau-api.datafortress.cloud/mcp"]
}
}
}
Then ask your agent something like "Send a physical letter via AgentBureau to the Berlin Finanzamt" — it will surface the 402 payment metadata, pay USDC on Base, and retry automatically.
Prompts (workflow playbooks)
| Prompt | Use Case |
|---|---|
incorporate_german_company |
Form a UG (1 EUR capital) or GmbH (25k EUR) end-to-end |
establish_eu_presence |
Bundle: formation + VAT + registered office (5,000 USDC) |
send_schriftform_letter |
Legally-binding physical letter (BGB §126 compliant) |
fax_german_authority |
Fax to Finanzamt / Handelsregister / Amtsgericht |
bill_german_customer |
GoBD-compliant invoice with auto VAT calculation |
submit_monthly_vat |
Umsatzsteuervoranmeldung via ELSTER |
collect_unpaid_invoice |
Hand off to licensed German Inkasso firm |
delegate_authority |
Issue Vollmacht (notarized + Apostille optional) |
You can use the AgentBureau connector to "handle the German bureaucracy" with direct instructions:
- Establish Legal Personality: "Incorporate a new German UG for my AI startup via the HITL concierge."
- Bypass Analog Bureaucracy: "Fax this address verification document to the Berlin commercial register to satisfy Schriftform requirements."
- Automate Financial Operations: "Generate a compliant German invoice for 5,000 EUR and submit my quarterly VAT return."
- Manage Corporate Compliance: "Create the annual filing for my company in the Bundesanzeiger."
- Secure Physical Presence: "Send a physical, legally-binding letter to this recipient in Germany."
- Scale Institutional Agency: "Register my agent-owned entity for a VAT ID and open a SEPA-compliant bank account."
Ways to Connect
1. Smithery Gateway (one-click for Claude / ChatGPT / Cursor / Windsurf)
Install from the Smithery listing — Smithery proxies through agentbureau--guese-justin.run.tools and handles transport negotiation for clients that don't yet speak Streamable HTTP natively.
2. Direct connection (clients that support remote MCP)
{
"mcpServers": {
"agentbureau": {
"url": "https://agentbureau-api.datafortress.cloud/mcp"
}
}
}
3. mcp-remote bridge (older clients)
{
"mcpServers": {
"agentbureau": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://agentbureau-api.datafortress.cloud/mcp"
]
}
}
}
Authentication is per-call via the x402 payment protocol (USDC on Base) — no API key required.
Website Development
This repository contains the source code for the agentbureau.de website and documentation.
Tech Stack
- Framework: Astro 5 (Starlight for docs)
- Styling: Tailwind CSS v4
- Interactive Islands: React
Getting Started
- Install dependencies:
npm install - Start development server:
npm run dev - Build for production:
npm run build
Documentation
Full documentation, including legal frameworks (ZAG exemption, Störerhaftung), detailed API references, and agent-specific integration guides, is available at /docs.
Marketing & Community
AgentBureau is being integrated into the following agentic registries and hubs:
- MCP Registries: Smithery, Glama, Awesome-MCP
- Agent Ecosystems: LangChain Hub, CrewAI Tools
- Agentic Economy: Coinbase Developer Platform, Base Ecosystem
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.