prometeoapi/prometeo-mcp
If you are the rightful owner of prometeo-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
Prometeo MCP Server is a server implementation for the Model Context Protocol (MCP) designed to connect with the Prometeo API, providing access to banking information, account validation, and CURP queries.
The Prometeo MCP Server is a robust server implementation that leverages the Model Context Protocol (MCP) to facilitate seamless integration with the Prometeo API. This server is designed to provide comprehensive access to banking information, validate accounts, and perform CURP queries, making it an essential tool for financial operations across Latin America and the United States. Built with Python 3.11+ and utilizing Pydantic v2.x, the server ensures high performance and reliability. It integrates with FastMCP and the Prometeo API SDK, offering a streamlined approach to managing financial data and operations. The server supports various banking operations, including account validation, transaction history retrieval, and cross-border payment processing. It also provides tools for CURP validation and retrieval, enhancing its utility for identity verification processes. With its extensive feature set and compatibility with multiple platforms, the Prometeo MCP Server is a valuable asset for businesses and developers looking to integrate advanced financial functionalities into their applications.
Features
- Python 3.11+ compatibility
- Integration with FastMCP
- Access to Prometeo API SDK
- CURP validation and retrieval
- Cross-border payment processing
Usages
usage with claude desktop
{ "mcpServers": { "PrometeoAPI": { "command": "uv", "args": [ "--directory", "/your/path/to/host", "run", "prometeo_mcp/server.py" ], "env": { "PROMETEO_API_KEY": "your_api_key", "PROMETEO_ENVIRONMENT": "sandbox" } } } }
usage with openai gpts
bash uv run prometeo_mcp/server.py
usage with openinterpreter opendevin
{ "tools": { "PrometeoServer": { "type": "command", "exec": "uv", "args": [ "run", "prometeo_mcp/server.py" ], "cwd": "/your/path/to/host", "env": { "PROMETEO_API_KEY": "your_api_key", "PROMETEO_ENVIRONMENT": "sandbox" } } } }
usage with langchain
python from langchain.tools import Tool prometeo_server_tool = Tool.from_function( name="PrometeoServer", func=lambda x: os.system("uv run prometeo_mcp/server.py"), description="Runs Prometeo API server" )
Tools
curp_query
Validates and retrieves information associated with an existing CURP.
validate_account
Validates bank account information across multiple countries.
banking_login
Establishes a connection with a banking provider by authenticating user credentials.
crossborder_create_intent
Creates a crossborder payin intent using various parameters.