- Home
- MCP servers
- Banrepco
Banrepco
- typescript
9
GitHub Stars
typescript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"kevyder-banrepco_mcp": {
"command": "npx",
"args": [
"mcp-remote",
"http://mcp.banrepco.kevyder.dev/sse"
]
}
}
}This MCP server provides remote access to Colombian financial indicators and related tools, enabling secure, scalable querying of inflation data and TRM exchange rates through client applications that support the MCP protocol.
How to use
You connect to this MCP server from your MCP client to access inflation data and TRM exchange rates. Use it to fetch current or historical indicators, paginate results, and sort data to fit your analysis workflow. Tools are available for inflation metrics and TRM exchange data, and you can incorporate them into your AI-assisted workflows or data tooling. When you connect, backup options include using a remote MCP proxy if your client environment requires it.
How to install
Prerequisites you need before starting:
- Node.js installed on your machine (LTS version recommended)
- A terminal or command prompt with network access
- Basic familiarity with MCP client configuration Follow these steps to set up and start using the server from your environment.
Step 1: Install the MCP client proxy (if you will connect via a remote proxy) or prepare your MCP client as needed.
Step 2: Add the MCP server configuration for your client. Use the configuration block shown below to point your client at the remote MCP server.
{
"mcpServers": {
"banrepco": {
"command": "npx",
"args": [
"mcp-remote",
"http://mcp.banrepco.kevyder.dev/sse"
]
}
}
}
Additional sections
Notes on usage and configuration:
- The server exposes a set of data tools for inflation data and TRM exchange rates. You can request paginated results and specify ranges or specific months where supported.
- To start querying from your MCP client, ensure the mcpServers configuration points to the remote server and that you have network access to the provided URL.
Available tools
get_inflation_data
Retrieve paginated inflation data.
get_inflation_data_by_specific_month
Get inflation data for a specific month and year.
get_inflation_data_by_range_dates
Query inflation data within a date range.
get_usd_to_cop_trm_historical_data
Retrieve historical USD to COP exchange rates with pagination.
get_usd_to_cop_trm_by_date_range
Query TRM data between two specific dates.
get_usd_to_cop_trm_by_date
Get the TRM value for a specific date.