by stampchain-io
Stampchain MCP Server — access Bitcoin stamp data via the Stampchain API. Query stamps, collections and blockchain info
Provides access to Bitcoin Stamps data and collections through the Stampchain API. Query stamp information, collections, and related blockchain data directly from your AI assistant.
Stampchain MCP Server is an official MCP server published by stampchain-io that provides AI assistants with tools and capabilities via the Model Context Protocol. Stampchain MCP Server — access Bitcoin stamp data via the Stampchain API. Query stamps, collections and blockchain info It is categorized under developer tools.
You can install Stampchain MCP Server in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
Stampchain MCP Server is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
I recommend Stampchain MCP Server for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
We wired Stampchain MCP Server into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
We evaluated Stampchain MCP Server against two servers with overlapping tools; this profile had the clearer scope statement.
According to our notes, Stampchain MCP Server benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
Useful MCP listing: Stampchain MCP Server is the kind of server we cite when onboarding engineers to host + tool permissions.
Stampchain MCP Server has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
Stampchain MCP Server reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
I recommend Stampchain MCP Server for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
We wired Stampchain MCP Server into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
Stampchain MCP Server is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
showing 1-10 of 26
A Model Context Protocol (MCP) server for interacting with Bitcoin Stamps and SRC-20 token data via the Stampchain API. This server provides MCP-compatible clients with tools to query Bitcoin Stamps, collections, and SRC-20 tokens.
Clone the repository:
git clone https://github.com/stampchain-io/stampchain-mcp.git
cd stampchain-mcp
Install dependencies:
npm install
Build the project:
npm run build
Test the installation:
npm run start
To use with Claude Desktop, add the following to your
claude_desktop_config.json:
{
"mcpServers": {
"stampchain": {
"command": "node",
"args": ["/path/to/stampchain-mcp/dist/index.js"],
"cwd": "/path/to/stampchain-mcp"
}
}
}
Alternative: Using npx (recommended)
For easier setup without local installation:
{
"mcpServers": {
"stampchain": {
"command": "npx",
"args": ["-y", "stampchain-mcp"]
}
}
}
Note: Replace /path/to/stampchain-mcp with the actual path to your
installation directory.
This server implements the standard MCP protocol and can be used with any MCP-compatible client. Refer to your client's documentation for specific configuration instructions. The server accepts connections via stdio transport.
get_stamp - Get detailed information about a specific stamp by IDsearch_stamps - Search stamps with various filters (creator, collection,
etc.)get_recent_stamps - Get the most recently created stampsget_collection - Get detailed information about a specific collectionsearch_collections - Search collections with filtersget_token_info - Get detailed information about a specific SRC-20 tokensearch_tokens - Search SRC-20 tokens with various filtersThe server can be configured through:
{
"api": {
"baseUrl": "https://stampchain.io/api",
"timeout": 30000,
"retries": 3
},
"logging": {
"level": "info"
},
"registry": {
"maxTools": 1000,
"validateOnRegister": true
}
}
STAMPCHAIN_API_URL - API base URL (default: https://stampchain.io/api)STAMPCHAIN_LOG_LEVEL - Logging level (debug, info, warn, error)STAMPCHAIN_API_TIMEOUT - API timeout in milliseconds# Start with default configuration
npm run start
# Start with custom config file
npm run start -- --config config.json
# Start with debug logging
npm run start -- --log-level debug
# Show available tools
npm run tools
# Show version information
npm run version
npm run dev - Start development server with hot reloadnpm run build - Build the TypeScript projectnpm run test - Run all testsnpm run test:watch - Run tests in watch modenpm run test:coverage - Run tests with coverage reportnpm run typecheck - TypeScript type checkingnpm run format - Format code with Prettiernpm run validate - Full validation suiteThe project includes comprehensive test coverage:
# Run all tests
npm test
# Run with coverage
npm run test:coverage
# Run in watch mode during development
npm run test:watch
src/
├── api/ # API client and related utilities
├── config/ # Configuration management
├── interfaces/ # TypeScript interfaces
├── protocol/ # MCP protocol handlers
├── schemas/ # Zod validation schemas
├── tools/ # MCP tool implementations
├── utils/ # Utility functions
├── index.ts # Main entry point
└── server.ts # Server implementation
All tools accept various parameters for filtering and pagination:
limit - Number of results to return (default: 10, max: 100)page - Page number for pagination (default: 1)sort - Sort field and direction (e.g., "created_desc")All tools return structured data with:
success - Boolean indicating if the request was successfuldata - The requested data (stamps, collections, tokens)pagination - Pagination information when applicableerror - Error details if the request failednpm install firstEnable debug logging to see detailed information:
npm run start -- --debug
Or set the log level in your configuration:
{
"logging": {
"level": "debug"
}
}
This project maintains comprehensive test coverage across multiple areas:
# Run specific test suites
npm run test:unit # Unit tests for utilities and helpers
npm run test:integration # Integration tests for MCP server
npm run test:api # API validation tests (v2.3 compatibility)
npm run test:tools # Tool functionality tests
npm run test:schemas # Schema validation tests
# Advanced testing options
npm run test:ui # Run tests in UI mode (interactive)
npm run test:ci # CI test run (includes coverage)
npm run validate # Full validation (schema + typecheck + format + tests)
npm installnpm run devnpm run test:watchnpm run validategit checkout -b feature/new-featurenpm testgit commit -am 'Add new feature'git push origin feature/new-featurenpm run validate before submitting PRsMIT License - see LICENSE file for details.
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.