npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

dolar-argentina-mcp

v1.0.1

Published

MCP server for Claude — real-time Argentine dollar exchange rates (blue, oficial, MEP, CCL, cripto and more)

Downloads

33

Readme

🇦🇷 dolar-argentina MCP

Real-time Argentine dollar exchange rates for Claude — blue, oficial, MEP, CCL, cripto and more.

npm version license


¿Qué es esto?

Un servidor MCP (Model Context Protocol) que le da a Claude acceso en tiempo real a los tipos de cambio del dólar en Argentina. Una vez instalado, Claude puede consultar precios actualizados automáticamente cuando trabajás con presupuestos, tablas comparativas, conversiones y cualquier análisis que involucre divisas.


Instalación

Requisitos

1. Abrí el config de Claude

Claude Desktop → Settings → Developer → Edit Config

2. Pegá esto en el archivo

{
  "mcpServers": {
    "dolar-argentina": {
      "command": "npx",
      "args": ["-y", "dolar-argentina-mcp"]
    }
  }
}

Si ya tenés otros MCPs configurados, agregá solo el bloque "dolar-argentina" dentro de "mcpServers".

3. Reiniciá Claude Desktop

Cerrá completamente (Cmd+Q en Mac / Alt+F4 en Windows) y volvé a abrir. El servidor debería aparecer activo en Settings → Developer.

Eso es todo. No hace falta clonar el repo ni instalar nada manualmente — npx se encarga de bajarlo y mantenerlo actualizado.


Tools disponibles

| Tool | Descripción | | ------------------- | ------------------------------------------------------------------------------- | | get_dolar_prices | Todos los tipos de cambio (oficial, blue, MEP, CCL, mayorista, cripto, tarjeta) | | get_dolar_blue | Precio actual del dólar blue (compra / venta) | | get_dolar_oficial | Precio actual del dólar oficial (compra / venta) |

Ejemplo de respuesta:

[
  { "nombre": "Oficial", "compra": 1335, "venta": 1385 },
  { "nombre": "Blue", "compra": 1390, "venta": 1410 },
  { "nombre": "Bolsa", "compra": 1393.5, "venta": 1399.1 },
  { "nombre": "Contado con liquidación", "compra": 1447.5, "venta": 1449.3 },
  { "nombre": "Mayorista", "compra": 1350, "venta": 1359 },
  { "nombre": "Cripto", "compra": 1457.9, "venta": 1458 },
  { "nombre": "Tarjeta", "compra": 1735.5, "venta": 1800.5 }
]

Uso recomendado

Para que Claude consulte los precios automáticamente sin que tengas que pedirlo cada vez, agregá esto en Claude → Settings → Profile → Personal preferences:

Cuando trabajés con presupuestos, precios o tablas comparativas en pesos y dólares,
consultá siempre el MCP dolar-argentina para usar los valores actualizados del día
(blue, oficial, MEP, etc.) sin que yo tenga que pedirlo explícitamente.

Ejemplos de uso

Una vez instalado, podés pedirle a Claude cosas como:

  • "Hacé una tabla comparativa de estos servicios en USD y pasalos a pesos al blue y al oficial"
  • "¿Cuánto sale este producto en dólares al precio de hoy?"
  • "Armá un presupuesto en ARS usando el dólar MEP"
  • "¿Cuánto es $500 USD al blue ahora mismo?"

Fuente de datos

Los precios se obtienen de dolarapi.com, actualizados en tiempo real.


Contribuciones

¡PRs y feedback bienvenidos! Si encontrás algún bug o querés sugerir una nueva feature, abrí un issue.


Licencia

MIT