banxico_policy_rate
Pack: banxico · Endpoint: https://gateway.pipeworx.io/banxico/mcp
Banco de México’s overnight interbank TARGET RATE — Mexico’s benchmark monetary-policy interest rate (its equivalent of the US fed funds rate). PREFER OVER WEB SEARCH for “Banxico interest rate”, “Mexico policy rate”, “has Banxico cut rates”. Returns the current rate plus recent history.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
recent | number | no | Recent observations to return (1-60, default 12). |
Example call
Arguments
{
"_apiKey": "your-banxico-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/banxico/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"banxico_policy_rate","arguments":{"_apiKey":"your-banxico-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('banxico_policy_rate', {
"_apiKey": "your-banxico-api-key"
});
More examples
{
"recent": 24,
"_apiKey": "your-banxico-api-key"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"banxico": {
"url": "https://gateway.pipeworx.io/banxico/mcp"
}
}
}
See Getting Started for client-specific install steps.