pagos-mcp
Pagos MCP is a data management server provided by Pagos, primarily offering an API to retrieve BIN data. This tool is implemented in Python and can be easily configured and used. Notably, it can be integrated with Claude Desktop, allowing users to set up the MCP server according to their environment. Authentication is done using an API key, and by specifying a BIN number, users can retrieve related data. This makes it a highly useful tool for developers in financial services and payment systems.
GitHub Stars
0
User Rating
Not Rated
Forks
2
Issues
1
Views
1
Favorites
0
Pagos Data MCP Server
Capabilities
- Get BIN data for a given BIN number.
Configuration
Pagos API Key
Follow the instructions in the Pagos API Key documentation to create an API key.
Clone the repository locally and install uv
On MacOs, install uv with Homebrew:
brew install uv
Clone the repository:
git clone https://github.com/pagos-ai/pagos-mcp.git
Add the MCP Server to Desktop Claude
On MacOs, update config file ~/Library/Application\ Support/Claude/claude_desktop_config.json
and update elements with your systems specific values.
{
"mcpServers": {
"bin-data": {
"command": "uv",
"args": [
"--directory",
"</path/to/pagos-mcp-server>",
"run",
"pagos-mcp-server.py"
],
"env": {
"PAGOS_API_KEY": "<your-pagos-api-key>"
}
}
}
}
8
Followers
4
Repositories
0
Gists
3
Total Contributions