{
"mcpServers": {
"Tazapay-Remote-Server": {
"url": "https://mcp.tazapay.com/stream",
"type": "streamable-http",
"headers": {
"Authorization": "Basic <base64_encoded_api_key:api_secret>"
}
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
The Tazapay MCP Server is a Model Context Protocol (MCP) server designed to bridge LLM-based tools with Tazapay's Payments API. It supports structured tool invocation for seamless payment automation and foreign exchange capabilities.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 37 days ago. 1 stars.
Will it work with my client?
Transport: stdio, sse, http. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Tazapay Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
The Tazapay MCP Server is a Model Context Protocol (MCP) server designed to bridge LLM-based tools with Tazapay's Payments API. It supports structured tool invocation for seamless payment automation and foreign exchange capabilities.
| Component | Technology | |-----------|------------| | Language | Go | | Framework | Anthropic MCP Plugin (mark3labs/mcp-go) | | Containerization | Docker |
The easiest way to use Tazapay MCP Server is via our hosted remote server.
Remote Server URL: https://mcp.tazapay.com/stream
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"Tazapay-Remote-Server": {
"type": "streamable-http",
"url": "https://mcp.tazapay.com/stream",
"headers": {
"Authorization": "Basic <base64_encoded_api_key:api_secret>"
}
}
}
}
Note: Replace
<base64_encoded_api_key:api_secret>with your Base64-encodedTAZAPAY_API_KEY:TAZAPAY_API_SECRETstring.
Add to your settings.json:
{
"mcp": {
"servers": {
"Tazapay-Remote-Server": {
"type": "streamable-http",
"url": "https://mcp.tazapay.com/stream",
"headers": {
"Authorization": "Basic <base64_encoded_api_key:api_secret>"
}
}
}
}
}
Go to Settings > MCP > Add New Global MCP Server and use:
{
"Tazapay-Remote-Server": {
"type": "streamable-http",
"url": "https://mcp.tazapay.com/stream",
"headers": {
"Authorization": "Basic <base64_encoded_api_key:api_secret>"
}
}
}
# Pull the Docker image
docker pull tazapay/tazapay-mcp-server:latest
# Run in Standard I/O mode (for Claude Desktop)
docker run --rm -i \
-e TAZAPAY_API_KEY=your_api_key \
-e TAZAPAY_API_SECRET=your_api_secret \
tazapay/tazapay-mcp-server:latest
# Run in Streamable HTTP mode
docker run --rm -p 8081:8081 \
-e TAZAPAY_API_KEY=your_api_key \
-e TAZAPAY_API_SECRET=your_api_secret \
-e SERVER_TYPE=streamablehttp \
tazapay/tazapay-mcp-server:latest
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"Tazapay-Docker-Server": {
"command": "docker",
"description": "MCP server to integrate Tazapay API's and payments solutions.",
"args": [
"run", "--rm", "-i",
"-e", "TAZAPAY_API_KEY",
"-e", "TAZAPAY_API_SECRET",
"tazapay/tazapay-mcp-server:latest"
],
"env": {
"TAZAPAY_API_KEY": "your_tazapay_api_key",
"TAZAPAY_API_SECRET": "your_tazapay_api_secret"
}
}
}
}
Add a .tazapay-mcp-server.yaml config file in your home directory:
TAZAPAY_API_KEY: "your_key"
TAZAPAY_API_SECRET: "your_secret"
Verify the configuration file exists:
[ -f "$HOME/.tazapay-mcp-server.yaml" ] && echo "Config file found." || echo "Config file missing at $HOME/.tazapay-mcp-server.yaml"
git clone https://github.com/tazapay/tazapay-mcp-server.git
cd tazapay-mcp-server
go build -o tazapay-mcp-server ./cmd/server