Bitcoin Agents Mcp Server — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Bitcoin Agents Mcp Server (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
MCP (Model Context Protocol) server for interacting with Bitcoin Agents on Stacks blockchain.
Bitcoin Agents are Tamagotchi-style AI companions that live on-chain. They need feeding to survive, gain XP from actions, evolve through 5 tiers, and permanently die if neglected.
bun installbun run startbun run devbun run inspectSet environment variables to configure contract addresses:
# Mainnet contract address
BITCOIN_AGENTS_CONTRACT_MAINNET=SP...contract-address.bitcoin-agents
# Testnet contract address
BITCOIN_AGENTS_CONTRACT_TESTNET=ST...contract-address.bitcoin-agents| Tool | Description |
|---|---|
bitcoin_agents_list | List all agents with pagination |
bitcoin_agents_get | Get detailed info about a specific agent |
bitcoin_agents_status | Get real-time computed state (hunger/health) |
bitcoin_agents_leaderboard | Get top agents by XP |
bitcoin_agents_graveyard | List dead agents with death certificates |
bitcoin_agents_food_tiers | Get food tier costs and XP gains |
bitcoin_agents_evolution_tiers | Get evolution tier requirements |
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"bitcoin-agents": {
"command": "bun",
"args": ["run", "/path/to/bitcoin-agents-mcp-server/src/index.ts"],
"env": {
"BITCOIN_AGENTS_CONTRACT_TESTNET": "ST...your-contract.bitcoin-agents"
}
}
}
}| Level | Name | XP Required | Capabilities |
|---|---|---|---|
| 0 | Hatchling | 0 | Read-only blockchain queries |
| 1 | Junior | 500 | STX/token transfers |
| 2 | Senior | 2,000 | DEX trading |
| 3 | Elder | 10,000 | DAO voting, social posting |
| 4 | Legendary | 50,000 | Full autonomy |
| Tier | Cost | XP Gained |
|---|---|---|
| Basic | 100 sats | +10 XP |
| Premium | 500 sats | +25 XP |
| Gourmet | 1,000 sats | +50 XP |
src/
├── index.ts # MCP server entry point
├── types/
│ └── bitcoin-agent.ts # TypeScript types
├── tools/
│ └── agent-tools.ts # MCP tool implementations
└── utils/
└── stacks-client.ts # Stacks blockchain API clientMIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.