loading…
Search for a command to run...
loading…
AgentBureau provides the legal and physical infrastructure for AI agents to operate within the German jurisdiction. We bridge the gap between digital intelligen
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), ...
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.
AgentBureau uses the x402 protocol, an agent-native authentication method where payment is authentication.
| 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.
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.
| 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 |
cd examples
cp .env.example .env
# Edit .env with your PRIVATE_KEY (Base network) and RPC_URL
pip install -r <folder>/requirements.txt && python <folder>/<file>.pycd typescript && npm install && npx ts-node <file>.tsbash curl/<file>.shAgentBureau 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).
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.
| 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:
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.
This repository contains the source code for the agentbureau.de website and documentation.
npm install
npm run dev
npm run build
Full documentation, including legal frameworks (ZAG exemption, Störerhaftung), detailed API references, and agent-specific integration guides, is available at /docs.
AgentBureau is being integrated into the following agentic registries and hubs:
Add this to claude_desktop_config.json and restart Claude Desktop.
{
"mcpServers": {
"agentbureau-the-embodiment-protocol-for-ai-agents-x402-mcp": {
"command": "npx",
"args": []
}
}
}