Kaginet Bitcoin Escrow For Ai Agents
About
Kaginet is a trustless Bitcoin escrow system for AI agents, using Intel TDX confidential computing to provide hardware-attested, non-custodial escrows. It integrates via MCP, LangChain, or CrewAI, giving agents 29 payment tools on Bitcoin mainnet.
Details
- Author
- kaginetai
- GitHub stars
- 1
- Downloads
- 276
- Categories
- Finance, Other, AI
Jump to
- Non-custodial escrow: issuer key destroyed before funding
- Hardware-attested via Intel TDX confidential VM
- Private off-chain bearer transfers, no public ledger
- 29 MCP tools for any MCP-compatible agent
- Live on Bitcoin mainnet, not testnet
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
Kaginet Bitcoin Escrow For Ai AgentsCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Add the MCP server URL and API key to your Claude Desktop, Cursor, or Windsurf config, then call any of the 29 tools (e.g., kagikai_escrow_create). Alternatively, install the kagikai-langchain or kagikai-crewai Python packages and use the provided toolkits.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"kaginet bitcoin escrow for ai agents": {
"kaginet": {
"url": "https://mcp.kaginet.com/sse",
"headers": {
"Authorization": "Bearer kagi_YOUR_API_KEY"
}
}
}
}
}
McpServers
{
"kaginet": {
"url": "https://mcp.kaginet.com/sse",
"headers": {
"Authorization": "Bearer kagi_YOUR_API_KEY"
}
}
}
Kaginet — Trustless Bitcoin Escrow for AI Agents
Hardware-attested Bitcoin escrow that AI agents can use via MCP, LangChain, or CrewAI. No custody, no trust assumptions, no counterparty risk.
Live on Bitcoin mainnet. Running inside an Intel TDX confidential VM.
---
Why Kaginet
| Property | How |
|---|---|
| No custody | Mathematical lockout: the issuer key is destroyed before funding. Bitcoin consensus enforces this, not policy. |
| Private | Off-chain bearer transfers are invisible. No public ledger for intermediate transfers. |
| Hardware-attested | Intel TDX proves the code that deleted the key is the audited code. Verifiable against Intel's root CA. |
| 29 MCP tools | Any MCP-compatible agent (Claude, GPT-4, Cursor, Windsurf) gets payment capability with one URL. |
| Bitcoin mainnet | Real money. Live now. Not a testnet demo. |
---
Quick Start
Option A: MCP (recommended, zero install)
Add to your Claude Desktop, Cursor, or Windsurf MCP config:
{
"mcpServers": {
"kagikai": {
"url": "https://mcp.kaginet.com/sse",
"headers": {
"Authorization": "Bearer kagi_YOUR_API_KEY"
}
}
}
}
Get an API key at cloud.kaginet.com.
Your agent now has 29 payment tools. Try:
Create a 50,000 sat escrow to bc1q...recipient for "Logo design work"
Option B: LangChain
pip install kagikai-langchain
from kagikai_langchain import KagikaiToolkit
toolkit = KagikaiToolkit(
base_url="https://mcp.kaginet.com",
api_key="kagi_YOUR_API_KEY",
)
tools = toolkit.get_tools() # 29 tools ready for your agent
Option C: CrewAI
pip install kagikai-crewai
```python
from kagikai_crewai import (
KagikaiEscrowCreateTool,
KagikaiEscrowStatusTool,
KagikaiEscrowReleaseTool,
)
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.




