Bitrefill MCP Server
A Model Context Protocol Server connector for Bitrefill public API, to enable AI agents to search and shop on Bitrefill.
Overview
Bitrefill MCP Server is a TypeScript-based Model Context Protocol (MCP) server that connects to the Bitrefill public API, enabling AI agents to search for and shop for gift cards, mobile top-ups, and more.
To use the Bitrefill MCP Server, install it via Smithery or Docker, and configure it in your AI assistant settings to allow it to communicate with the Bitrefill API for product searches and details.
- Access to a wide range of Bitrefill services including gift cards and mobile top-ups. - Implements the Model Context Protocol for seamless integration with AI assistants. - Provides structured JSON responses for easy processing by AI.
- Enabling AI assistants to help users find and purchase gift cards.
- Allowing users to top up their mobile phones through AI interactions.
- Facilitating product searches for various digital goods via AI agents.
Add to your AI client
Use these steps to connect Bitrefill MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"bitrefill-mcp-server-bitrefill": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-bitrefill-mcp-server-bitrefill"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"bitrefill-mcp-server-bitrefill": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-bitrefill-mcp-server-bitrefill"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"bitrefill-mcp-server-bitrefill": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-bitrefill-mcp-server-bitrefill"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"bitrefill-mcp-server-bitrefill": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-bitrefill-mcp-server-bitrefill"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"bitrefill-mcp-server-bitrefill": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-bitrefill-mcp-server-bitrefill"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"bitrefill-mcp-server-bitrefill": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-bitrefill-mcp-server-bitrefill"
]
}
}
}FAQ
What is the Model Context Protocol (MCP)?
MCP is a protocol that allows AI assistants to communicate with external services like Bitrefill.
Is Bitrefill MCP Server free to use?
Yes! The server is open-source and free to use.
How do I install Bitrefill MCP Server?
You can install it via Smithery or Docker, following the installation instructions provided in the documentation.