loading…
Search for a command to run...
loading…
Enables AI assistants to interact with TheBrain's knowledge management system through natural language for managing thoughts, notes, and attachments. It support
Enables AI assistants to interact with TheBrain's knowledge management system through natural language for managing thoughts, notes, and attachments. It supports core features like full-text search, relationship mapping, and file uploads to streamline digital brain organization.
The first city on the Lightning Turnpike.
An MCP server that gives AI agents read-write access to a personal knowledge graph — and pays for itself with Bitcoin Lightning micropayments.
The metaphors in this project are drawn with admiration from The Phantom Tollbooth by Norton Juster, illustrated by Jules Feiffer (1961). Milo, Tock, the Tollbooth, Dictionopolis, and Digitopolis are creations of Mr. Juster's extraordinary imagination. We just built the payment infrastructure.
Every turnpike needs its first city. Before the booths can collect fares and the authority can stamp purchase orders, someone has to build a destination worth driving to.
thebrain-mcp is that city — a FastMCP service deployed on Horizon that bridges AI agents to TheBrain, a personal knowledge graph of 9,000+ interconnected thoughts built over a decade. Every thought, link, attachment, and note operation maps directly to TheBrain's cloud API at api.bra.in.
It's also the proving ground for Tollbooth DPYC™ — the first MCP server where every tool call is metered via Bitcoin Lightning micropayments. Pre-fund, use, top up. No subscriptions, no API keys tied to billing accounts, no fiat payment processors. The novel contribution: an MCP server architecture where the operator monetizes AI agent access through Lightning micropayments without ever pestering the client mid-conversation.
Connect any MCP-compatible client (Claude Desktop, Cursor, your own agent) to the live endpoint:
https://personal-brain.fastmcp.app/mcp
No configuration needed — Horizon OAuth handles authentication automatically.
session_status — Check your current session state.how_to_join() tool — this is the npub you registered as a DPYC™ Citizen, your identity for credit operations.request_credential_channel(recipient_npub=<patron_npub>) — opens a Secure Courier channel; sends a welcome DM to your Nostr client.{"api_key": "...", "brain_id": "..."}receive_credentials(sender_npub=<patron_npub>) — vaults your credentials and activates the session. A seed balance is granted automatically.list_brains → set_active_brain — Select which brain to work with.brain_query — Start exploring your knowledge graph.Returning users: call receive_credentials(sender_npub=<patron_npub>) — vault-first lookup activates instantly, no relay I/O needed.
Credentials are delivered via encrypted Nostr DMs — they never appear in the chat window. On first-time relay receipt, the service sends an ncred1... credential card back to the patron via DM for scan-and-paste reuse.
Human in the loop: The patron must consciously approve each credential delivery via their Nostr client. Never auto-poll or auto-retry receive_* calls — each receive_credentials drains the relay destructively (NIP-09 deletion after pickup). Call it exactly once per credential delivery.
| Category | Pricing hint | Examples |
|---|---|---|
free |
0 sats | session_status, check_balance, check_price |
read |
1 sat | get_thought, search_thoughts, get_note |
write |
5 sats | create_thought, create_link, update_thought |
heavy |
10 sats | brain_query, get_modifications |
Actual prices are set dynamically by the operator's pricing model in Neon via api_sats per tool. Auth and balance tools are always free. First-time users receive a seed balance on onboarding — enough to explore without purchasing credits up front.
Credits are issued as tranches with a tranche_lifetime (TTL). Tranches are consumed FIFO; expired tranches are pruned automatically. Use check_balance to see your balance, active tranches, and usage history. Top up via purchase_credits with Bitcoin Lightning.
npub (Nostr public key), not an email or username. The nsec (private key) stays with the patron — never shared, never sent to a service.proof parameter. The proof is a JSON-serialized Nostr event signed by the patron's nsec, binding their npub to the specific tool call.A Cypher-subset query language purpose-built for TheBrain. Agents and humans express graph operations in the same formalism — full CRUD via MATCH, CREATE, SET, MERGE, and DELETE.
MATCH (n {name: "Projects"})-[:CHILD]->(m) RETURN m
MATCH (n) WHERE n.name =~ "quarterly review" RETURN n
MATCH (p {name: "Ideas"}) CREATE (p)-[:CHILD]->(n {name: "New Concept"})
MATCH (root {name: "Company"})-[:CHILD*1..3]->(d) WHERE d.name CONTAINS "Budget" RETURN d
Variable-length paths, multi-hop chains, compound WHERE with AND/OR/NOT/XOR, similarity search, and property existence checks. Full grammar in python/BRAINQUERY.md.
When a tool call fails, read the response — it tells you what happened and what to do next. Credential lifecycle states are not errors; they are expected situations with clear guidance.
| Situation | What to do |
|---|---|
| proof is required | Call request_npub_proof then receive_npub_proof — a fresh request/receive cycle. The cache expires after ~1 hour. |
| Insufficient credit balance | Call purchase_credits to top up. |
| Cold start / session not ready | Retry in 10-15 seconds. Inline retry is available in v0.13.5+. |
| Credentials not found | Follow the Secure Courier onboarding flow (step 3 above). |
| Upstream API error | Only if the error explicitly mentions TheBrain API failure. Not a credential or billing issue. |
Don't Pester Your Customer: Do NOT ask the patron to re-authenticate or re-do the Courier flow unless the error message specifically says credentials are missing or expired.
For local installation, configuration, and the full tool reference, see python/README.md.
To run your own instance, set these environment variables:
| Variable | Purpose |
|---|---|
TOLLBOOTH_NOSTR_OPERATOR_NSEC |
Operator's Nostr secret key -- the single bootstrap key for identity, Secure Courier DMs, and audit signing |
This is the only env var required to start. Certified operators bootstrap their Neon database URL from the Authority via encrypted Nostr DM -- NEON_DATABASE_URL is not read from the environment.
| Variable | Purpose |
|---|---|
TOLLBOOTH_NOSTR_RELAYS |
Comma-separated relay URLs (overrides defaults) |
THEBRAIN_API_URL |
TheBrain API base URL (default: https://api.bra.in) |
SEED_BALANCE_SATS |
Free starter balance for new users (0 to disable) |
CREDIT_TTL_SECONDS |
Tranche lifetime in seconds (default: 604800 = 7 days) |
DPYC_REGISTRY_CACHE_TTL_SECONDS |
How long to cache the DPYC community registry (default: 300) |
CONSTRAINTS_ENABLED |
"true" to enable constraint engine evaluation on tool calls |
All secrets flow through Secure Courier -- they never appear as environment variables:
| Credential | Delivery |
|---|---|
| TheBrain API key + brain ID | Patron delivers via encrypted Nostr DM |
BTCPay credentials (btcpay_host, btcpay_api_key, btcpay_store_id) |
Operator delivers via Secure Courier |
Note:
THEBRAIN_API_KEYis not an environment variable. Patrons deliver their TheBrain API key and brain ID via Secure Courier (encrypted Nostr DM). Only the operator's nsec is configured as an env var.
The BrainOperator class (in actor.py) satisfies OperatorProtocol from tollbooth-dpyc. It's a thin delegation layer over existing server.py tool functions.
from thebrain_mcp.actor import BrainOperator
from tollbooth import OperatorProtocol
assert isinstance(BrainOperator(), OperatorProtocol)
The actor exposes:
slug — returns "brain" for tool-name prefixingregister_standard_tools() — delegates standard Tollbooth DPYC™ tools (session, billing, community) to the wheeltool_catalog() — returns OPERATOR_BASE_CATALOG (19 ToolPathInfo entries) — the canonical tool surface from tollbooth-dpyc| Path | Tools | Status |
|---|---|---|
| Hot (local ledger) | check_balance, account_statement, account_statement_infographic, restore_credits, service_status |
Implemented — delegates to server.py |
| Hot (Secure Courier) | session_status, request_credential_channel, receive_credentials, forget_credentials |
Implemented — Nostr credential delivery with credential card DM |
| Delegation (Authority) | purchase_credits, check_payment |
Implemented — auto-certifies via MCP-to-MCP |
| Delegation (Authority) | certify_credits, register_operator, operator_status |
Stub — connect to the Authority MCP directly |
| Delegation (Oracle) | lookup_member, how_to_join, get_tax_rate, about, network_advisory |
Implemented — MCP-to-MCP via OracleClient |
Payment processing auto-certifies via the Authority (server-to-server OAuth). Secure Courier delivers encrypted credentials via Nostr DMs with automatic credential card (ncred1...) DM-back on first receipt. Oracle community tools route directly to the DPYC™ Oracle — free and unauthenticated.
The Tollbooth DPYC™ ecosystem is a three-party protocol spanning three repositories:
| Repo | Role |
|---|---|
| tollbooth-authority | The institution — tax collection, Schnorr signing, purchase order certification |
| tollbooth-dpyc | The booth — operator-side credit ledger, BTCPay client, tool gating |
| dpyc-oracle | The concierge — community onboarding, tax rates, membership lookup |
| thebrain-mcp (this repo) | The first city — reference MCP server powered by Tollbooth DPYC™ |
See the Three-Party Protocol diagram for the full architecture. The operator-side flow is also available.
thebrain-mcp/
├── python/ # FastMCP server package
│ ├── src/thebrain_mcp/ # Server source, BQL engine, Tollbooth
│ ├── tests/ # Test suite (525+ tests)
│ ├── README.md # Install, config, tools, usage
│ └── BRAINQUERY.md # BQL grammar and reference
├── docs/
│ └── diagrams/ # Architecture and protocol flow diagrams
├── LICENSE # Apache License 2.0
└── NOTICE # Attribution notice
The methods, algorithms, and implementations contained in this repository may represent original work by Lonnie VanZandt, first published on February 16, 2026. This public disclosure establishes prior art under U.S. patent law (35 U.S.C. 102).
All use, reproduction, or derivative work must comply with the Apache License 2.0 included in this repository and must provide proper attribution to the original author per the NOTICE file.
If you use or build upon this work, please include the following in your documentation or source:
Based on original work by Lonnie VanZandt and Claude.ai
Originally published: February 16, 2026
Source: https://github.com/lonniev/thebrain-mcp
Licensed under Apache License 2.0
Visit the technologist's virtual cafe for Bitcoin advocates and coffee aficionados at stablecoin.myshopify.com.
The author reserves all rights to seek patent protection for the novel methods and systems described herein. Public disclosure of this work establishes a priority date of February 16, 2026. Under the America Invents Act, the author retains a one-year grace period from the date of first public disclosure to file patent applications.
Note to potential filers: This public repository and its full Git history serve as evidence of prior art. Any patent application covering substantially similar methods filed after the publication date of this repository may be subject to invalidation under 35 U.S.C. 102(a).
The Phantom Tollbooth on the Lightning Turnpike — the full story of how we're monetizing the monetization of AI APIs, and then fading to the background.
DPYC™, Tollbooth DPYC™, and Don't Pester Your Customer™ are trademarks of Lonnie VanZandt. See the TRADEMARKS.md in the dpyc-community repository for usage guidelines.
Apache License 2.0 — see LICENSE and NOTICE for details.
Because in the end, the tollbooth was never the destination. It was always just the beginning of the journey.
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"thebrain-mcp-server": {
"command": "npx",
"args": []
}
}
}