DataBursatil MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@DataBursatil MCP Serverwhat is the current price of AMXL*?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
DataBursatil MCP Server
MCP server to access the DataBursatil API, which provides data from the Mexican stock market (BMV, BIVA).
Requirements
Python 3.10 or higher
uv (recommended) or pip
DataBursatil API token (get one at databursatil.com)
Related MCP server: Alpha Vantage MCP Server
Installation
With uv (recommended)
# Clone or download the project
cd databursatil-mcp
# Install dependencies
uv syncWith pip
cd databursatil-mcp
pip install -e .Configuration
The server requires a DataBursatil authentication token. Configure the DATABURSATIL_TOKEN environment variable:
# Linux/macOS
export DATABURSATIL_TOKEN="your_30_character_token"
# Windows (PowerShell)
$env:DATABURSATIL_TOKEN = "your_30_character_token"
# Windows (CMD)
set DATABURSATIL_TOKEN=your_30_character_tokenConfiguration in Claude
Add the following configuration to your claude_desktop_config.json file:
Configuration in Claude Code
{
"mcpServers": {
"databursatil": {
"command": "uv",
"args": ["--directory", "/path/to/databursatil-mcp", "run", "databursatil-mcp"],
"env": {
"DATABURSATIL_TOKEN": "your_token_here"
}
}
}
}Available Tools
1. get_emisoras
Gets general information about issuers and their series.
Parameter | Type | Required | Description |
| string | No | Filter by initial letter or word |
| string | No | "local", "global" or both |
Usage example:
"Show me issuers starting with A"
"List all issuers in the global market"2. get_intradia
Gets intraday quotes during trading hours.
Parameter | Type | Required | Description |
| string | Yes | Up to 10 issuers. Ex: "AMXL*,FEMSAUBD" |
| string | Yes | "BMV" or "BIVA" |
| string | Yes | "1m", "5m" or "1h" |
| string | Yes | Date YYYY-MM-DD |
| string | Yes | Date YYYY-MM-DD |
Usage example:
"Show me intraday prices for AMXL* in 5-minute intervals for today"3. get_cotizaciones
Gets current prices of issuers.
Parameter | Type | Required | Description |
| string | Yes | Up to 50 issuers |
| string | Yes | u,p,a,x,n,c,m,v,o,i (see table below) |
| string | Yes | "BMV", "BIVA" or both |
Available concepts:
Code | Description |
u | Last price |
p | Weighted average price |
a | Previous price |
x | Maximum price |
n | Minimum price |
c | Percentage change |
m | Change in pesos |
v | Volume |
o | Operations |
i | Accumulated amount |
Usage example:
"What is the current price of AMXL* and FEMSAUBD?"
"Show me the volume and percentage change for GFNORTEO"4. get_top
Gets ranking of issuers by different criteria.
Parameter | Type | Required | Description |
| string | Yes | "suben", "bajan", "importe", "volumen", "operaciones" |
| string | Yes | "BMV" or "BIVA" (only one) |
| int | Yes | 1-50 |
| string | Yes | "local" or "global" |
| string | Yes | Date YYYY-MM-DD |
| string | Yes | Date YYYY-MM-DD |
Usage example:
"What are the top 10 stocks gaining today on the BMV?"
"Top 5 issuers with highest volume this week"5. get_historicos
Gets historical closing prices.
Parameter | Type | Required | Description |
| string | Yes | Single issuer |
| string | Yes | Date YYYY-MM-DD |
| string | Yes | Date YYYY-MM-DD |
Usage example:
"Show me the price history for AMXL* for the last month"
"BIMBOA closing prices for 2024"6. get_financieros
Gets financial statements of issuers.
Parameter | Type | Required | Description |
| string | Yes | Ticker WITHOUT series. Ex: "AMXL" |
| string | Yes | Format "1T_2025" (quarter_year) |
| string | Yes | "posicion", "flujos", "resultado_trimestre", "resultado_acumulado" |
Usage example:
"Show me FEMSA's balance sheet for Q1 2025"
"AMXL quarterly results for Q4 2024"7. get_indices
Gets stock market index prices.
Parameter | Type | Required | Description |
| string | No | Filter by index. Ex: "IPC", "DJI" |
Usage example:
"How is the IPC today?"
"Show me all stock market indices"8. get_tasas
Gets Mexican money market rates.
Parameter | Type | Required | Description |
| string | No | Filter by rate. Ex: "TIIE28" |
Usage example:
"What is the 28-day TIIE rate?"
"Show all reference rates"9. get_divisas
Gets currency exchange rates.
Parameter | Type | Required | Description |
| string | No | Currency pair. Ex: "USDMXN" |
Usage example:
"What's the dollar exchange rate?"
"Euro to peso exchange rate"10. get_commodities
Gets commodity prices.
Parameter | Type | Required | Description |
| string | No | Commodity. Ex: "WTI", "GOLD" |
Usage example:
"WTI oil price"
"How is gold doing today?"11. get_noticias
Gets business and economy news.
No required parameters.
Usage example:
"What are the latest financial news?"12. get_cables
Gets news wires from Mexican issuers.
Parameter | Type | Required | Description |
| string | No | "boletines", "top", "valuaciones", "flash", "generales" |
Usage example:
"Show me today's issuer bulletins"
"Market flash news"13. get_descargas
Downloads end-of-day facts or valuations.
Parameter | Type | Required | Description |
| string | Yes | "hechos" or "guber" |
| string | Yes | Date YYYY-MM-DD (business days) |
Usage example:
"Download last Friday's facts"
"Government valuations for January 15"14. get_hechos
Gets filtered individual operations.
Parameter | Type | Required | Description |
| string | Yes | Up to 10 issuers |
| string | Yes | Date YYYY-MM-DD |
| string | Yes | Start time HH:MM |
| string | Yes | End time HH:MM |
Usage example:
"Show me AMXL* operations for today between 9:00 and 11:00"15. get_creditos
Shows available credits for the token.
No required parameters.
Usage example:
"How many credits do I have left?"Development
Test the server locally
# With MCP inspector
uv run mcp dev src/databursatil_mcp/server.py
# Run directly
uv run databursatil-mcpCommon Errors
Error | Cause | Solution |
"Token not configured" | Environment variable not set | Configure |
"Invalid or expired token" | Incorrect token | Verify your token at databursatil.com |
"Credits exhausted" | No credits available | Wait until the 1st of the month |
"Invalid parameters" | Incorrect format | Check date and parameter format |
License
MIT
Links
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/angel7i/databursatil-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server