AI services via Bitcoin Lightning — PDF summarisation, code review, translation and more.
{
"mcpServers": {
"io-github-squidboy30-boltwork-mcp": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
AI services via Bitcoin Lightning — PDF summarisation, code review, translation and more.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Commit history unknown.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
Dynamic problem-solving through sequential thought chains
A Model Context Protocol server for searching and analyzing arXiv papers
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
MCP Security Weekly
Get CVE alerts and security updates for io.github.Squidboy30/boltwork-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
mcp-name: io.github.Squidboy30/boltwork-mcp
MCP server for Boltwork — AI services that pay for themselves via Bitcoin Lightning.
Give your AI agent PDF summarisation, code review, translation, web extraction, document comparison, and persistent memory — all paid autonomously in sats. No API keys. No subscriptions. No accounts.
Boltwork is a pay-per-call AI services API that uses the L402 protocol — your agent makes a request, receives a Lightning invoice, pays it automatically, and gets the result back. No human involved.
This package wraps Boltwork as an MCP server so any MCP-compatible AI (Claude, Cursor, Windsurf, etc.) can use it as a tool — with payments handled transparently in the background.
pip install boltwork-mcp
# If using NWC (Nostr Wallet Connect):
pip install "boltwork-mcp[nwc]"
Or use directly with uvx — no install needed:
uvx boltwork-mcp
You need a Lightning wallet that supports either:
Option A — NWC (recommended, easiest)
Option B — Phoenixd
Claude Desktop — edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"boltwork": {
"command": "uvx",
"args": ["boltwork-mcp"],
"env": {
"NWC_CONNECTION_STRING": "nostr+walletconnect://your-connection-string-here"
}
}
}
}
Cursor — edit .cursor/mcp.json in your project:
{
"mcpServers": {
"boltwork": {
"command": "uvx",
"args": ["boltwork-mcp"],
"env": {
"NWC_CONNECTION_STRING": "nostr+walletconnect://your-connection-string-here"
}
}
}
}
Using Phoenixd instead of NWC:
{
"mcpServers": {
"boltwork": {
"command": "uvx",
"args": ["boltwork-mcp"],
"env": {
"PHOENIXD_URL": "http://localhost:9740",
"PHOENIXD_PASSWORD": "your-phoenixd-password"
}
}
}
}
That's it. Your agent now has access to all Boltwork tools and will pay invoices automatically when it uses them.
| Tool | What it does | Cost |
|---|---|---|
summarise_pdf | Summarise a PDF from URL | 500 sats |
review_code | Review code for bugs, security, quality | 2000 sats |
review_code_url | Review code from GitHub/GitLab URL | 2000 sats |
summarise_webpage | Summarise any web page | 100 sats |
extract_data | Extract structured data from PDF | 200 sats |
translate | Translate text or document to 24 languages | 150 sats |
extract_tables | Extract tables from PDF as structured JSON | 300 sats |
compare_documents | Diff two PDFs | 500 sats |
explain_code | Explain code in plain English | 500 sats |
memory_store | Store persistent key-value memory | 10 sats |
memory_retrieve | Read stored memory | 5 sats |
memory_delete | Delete a memory key | free |
run_workflow | Chain services in a single pipeline | 1000 sats |
Once configured, just talk to your AI naturally:
"Summarise this research paper: https://arxiv.org/pdf/2301.00000"
"Review the code at https://
... [View full README on GitHub](https://github.com/Squidboy30/boltwork-mcp#readme)