Bitrefill Search and ShopOfficial
A Model Context Protocol Server connector for Bitrefill public API, to enable AI agents to search and shop on Bitrefill. - bitrefill/bitrefill-mcp-server
bitrefill
README
Bitrefill MCP Server
A TypeScript-based MCP server that provides access to Bitrefill services, allowing you to search for gift cards, mobile topups, and more. This server implements the Model Context Protocol to expose Bitrefill functionality to AI assistants.
How It Works
The server operates using the Model Context Protocol (MCP) to communicate with Claude and similar AI assistants. It:
- Runs as a standalone process using stdio for communication
- Registers resources and tools for accessing Bitrefill services
- Interfaces with the Bitrefill API to provide product search and details
- Returns structured JSON responses that can be processed by AI assistants
Architecture
The app server follows this architecture:
src/
├── index.ts # Main entry point
├── constants/ # Static data
│ └── categories.ts # Product categories
├── handlers/ # MCP request handlers
│ ├── resources.ts # Resource endpoints
│ └── tools.ts # Tool implementations
├── services/ # API services
│ ├── products.ts # Product details service
│ └── search.ts # Search functionality
├── types/ # TypeScript definitions
│ └── index.ts # Types for API responses
└── utils/ # Utility functions
└── index.ts # Error logging, etc.
Features
Resources
bitrefill://product-types
- List of available product types on Bitrefillbitrefill://categories/{type}
- List of available categories for a specific product type (e.g.,bitrefill://categories/gift-cards
)
Tools
-
search
- Search for gift cards, esims, mobile topups and more- Required:
query
(e.g., 'Amazon', 'Netflix', 'AT&T' or '*' for all) - Optional:
country
,language
,limit
,skip
,category
- Required:
-
detail
- Get detailed information about a product- Required:
id
(product identifier)
- Required:
-
categories
- Get the full product type/categories map- No required parameters
Development
Install dependencies:
npm install
Build the server:
npm run build
For development with auto-rebuild:
npm run watch
Debugging
Since MCP servers communicate over stdio, debugging can be challenging. We recommend using the MCP Inspector, which is available as a package script:
npm run inspector
The Inspector will provide a URL to access debugging tools in your browser.
Installation
Installing via Smithery
To install Bitrefill for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @bitrefill/bitrefill-mcp-server --client claude
Claude Desktop
Add the server config at:
- MacOS:
~/Library/Application Support/Claude/claude_desktop_config.json
- Windows:
%APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"bitrefill": {
"command": "npx",
"args": ["-y", "bitrefill-mcp-server"]
}
}
}
Cline
- Open the Cline extension settings
- Open "MCP Servers" tab
- Click on "Configure MCP Servers"
- Add the server config:
{
"mcpServers": {
"github.com/bitrefill/bitrefill-mcp-server": {
"command": "npx",
"args": ["-y", "bitrefill-mcp-server"],
"disabled": false,
"autoApprove": ["search", "detail", "categories"]
}
}
}
Additional Cline configuration options:
disabled
: Set tofalse
to enable the serverautoApprove
: List of tools that don't require explicit approval for each use
Cursor
- Open the Cursor settings
- Open "Features" settings
- In the "MCP Servers" section, click on "Add new MCP Server"
- Choose a name, and select "command" as "Type"
- In the "Command" field, enter the following:
npx -y bitrefill-mcp-server
Docker
You can also run the server using Docker. First, build the image:
docker build -t bitrefill-mcp-server .
Then run the container:
docker run -e bitrefill-mcp-server
For development, you might want to mount your source code as a volume:
docker run -v $(pwd):/app --env-file .env bitrefill-mcp-server
Recommended Servers
Crypto Price & Market Analysis MCP Server
A Model Context Protocol (MCP) server that provides real-time cryptocurrency analysis via CoinCap's API. Enables Claude and other MCP clients to fetch crypto prices, analyze market trends, and track historical data. - truss44/mcp-crypto-price
Adamik MCP Server
Adamik MCP. Contribute to AdamikHQ/adamik-mcp-server development by creating an account on GitHub.
TripleWhale MCP Server
Triplewhale MCP Server. Contribute to Triple-Whale/mcp-server-triplewhale development by creating an account on GitHub.

chromia-mcp
Contribute to chromindscan/chromia-mcp development by creating an account on GitHub.
ntropy-mcp MCP Server
MCP server for enriching banking data using the Ntropy API - ntropy-network/ntropy-mcp
actors-mcp-server
Model Context Protocol (MCP) Server for Apify's Actors - apify/actors-mcp-server
Iaptic MCP Server
Model Context Protocol server for interacting with iaptic - iaptic/mcp-server-iaptic
BigGo MCP Server
BigGo MCP Server utilizes APIs from BigGo, a professional price comparison website. - Funmula-Corp/BigGo-MCP-Server
Open-Ledger-MCP-Server
A Model Context Protocol (MCP) server implementation for the OpenLedger API. This server provides structured context to AI models according to the MCP specification. - openledger/Open-Ledger-MCP-Server
Cryptocurrency Daemon MCP Server
MCP server for interacting with cryptocurrency daemon RPC interfaces (BETA) - raw391/coin_daemon_mcp