多拉·麦克普
AI代理商的阿根廷汇率。
](https://www.npmjs.com/package/@dan1d/dolar-mcp)  ](https://www.npmjs.com/package/@dan1d/dolar-mcp) 
MCP服务器,使AI代理能够通过以下方式实时访问阿根廷汇率 美元API美元蓝、官方、MEP、CCL、加密货币——加上货币转换和点差计算器。
不需要API密钥。
|
______________________________________________________________________
快速开始
克劳德桌面版
添加到您的 claude_desktop_config.json:
{
"mcpServers": {
"dolar": {
"command": "npx",
"args": ["-y", "@dan1d/dolar-mcp"]
}
}
}克劳德代码
claude mcp add dolar -- npx -y @dan1d/dolar-mcp光标
添加 .cursor/mcp.json:
{
"mcpServers": {
"dolar": {
"command": "npx",
"args": ["-y", "@dan1d/dolar-mcp"]
}
}
}帆板运动
{
"mcpServers": {
"dolar": {
"command": "npx",
"args": ["-y", "@dan1d/dolar-mcp"]
}
}
}配置后,询问您的AI助手以下问题: *“今天蓝色美元多少钱?”* 或 *“将100美元蓝色转换为ARS”* 或 *“蓝色和黑色之间的差距是多少?”*
______________________________________________________________________
可用工具
| 工具 | 说明 |
|---|---|
get_all_dollars | 获取所有美元汇率:blue,official,bolsa(MEP),contado con liqui(CCL),cripto,mayorista和tarjeta。返回买入/卖出价格。 |
get_dollar | 获取特定美元类型的汇率。类型: blue, oficial, bolsa, contadoconliqui, cripto, mayorista, tarjeta. |
get_all_currencies | 获取所有外币汇率vs ARS(欧元、巴西雷亚尔、UYU、CLP等)。 |
get_currency | 获取特定外币与ARS的汇率。 |
convert | 在ARS和任何货币或美元类型之间转换金额。至少一侧必须是ARS。支持 use_buy 买入率标志。 |
get_spread | 计算两种美元类型之间的价差(差异),例如蓝色与非官方。返回绝对点差和百分比点差。 |
______________________________________________________________________
示例提示
- “给我所有的美元报价”
- “今天蓝色美元多少钱?”
- “兑换500美元蓝色比索”
- “军官和蓝色之间有什么差距?”
- “欧元多少钱?”
- 转换 1000 EUR 为 ARS
______________________________________________________________________
程序化使用
npm install @dan1d/dolar-mcpimport { createDolarTools } from "@dan1d/dolar-mcp";
const dolar = createDolarTools();
// Get all dollar rates
const rates = await dolar.tools.get_all_dollars();
// Get blue dollar specifically
const blue = await dolar.tools.get_dollar({ type: "blue" });
// Convert 100 USD blue to ARS
const converted = await dolar.tools.convert({
amount: 100,
from: "blue",
});
// Calculate spread between oficial and blue
const spread = await dolar.tools.get_spread({
type_a: "oficial",
type_b: "blue",
});______________________________________________________________________
数据源
所有数据均来自 美元API,一个免费的公开API阿根廷汇率。无需身份验证。数据实时更新。
______________________________________________________________________
LATAM MCP工具包的一部分
| 服务器 | 它做什么 |
|---|---|
| CobroYa | Mercado Pago支付——创建链接、搜索支付、退款 |
| 市场化MCP | MercadoLibre市场——搜索产品、类别、趋势 |
| DolarAPI MCP | 阿根廷汇率-蓝色,官方,CCL,加密货币,转换 |
______________________________________________________________________
