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

@ecopulso/mcp-server

v0.1.0

Published

MCP server para acceder a indicadores económicos del Banco Central de Chile vía EcoPulso. 3 tools: list_series, get_series_data, get_findings.

Readme

@ecopulso/mcp-server

MCP server para consultar los indicadores económicos del Banco Central de Chile desde Claude Desktop, Cursor u otros clientes compatibles con el Model Context Protocol.

Instalación

Claude Desktop

Editá claude_desktop_config.json (Mac: ~/Library/Application Support/Claude/, Windows: %APPDATA%\Claude\):

{
  "mcpServers": {
    "ecopulso": {
      "command": "npx",
      "args": ["-y", "@ecopulso/mcp-server"],
      "env": {
        "ECOPULSO_API_KEY": "ek_tu_key_aca"
      }
    }
  }
}

Reiniciá Claude Desktop y vas a ver las 3 herramientas EcoPulso disponibles.

Cursor / otros clientes

Misma config, en el archivo que corresponda según el cliente.

API key

Generá una en EcoPulso → Ajustes → API & acceso programático.

Tools disponibles

| Tool | Descripción | |---|---| | list_series | Catálogo de series BCCh (filtrable por módulo y frecuencia) | | get_series_data | Observaciones (fecha + valor) de una serie | | get_findings | Hallazgos económicos recientes con severidad |

Ejemplo de uso

Tú: "Claude, dame el IPC mensual de los últimos 12 meses y graficalo."
→ Claude llama get_series_data(serie_id="ipc_general_mensual", since="2025-06-01")
→ Devuelve los puntos y genera el gráfico.

Variables de entorno

| Variable | Default | Descripción | |---|---|---| | ECOPULSO_API_KEY | (requerido) | API key generada en EcoPulso | | ECOPULSO_API_BASE | https://ecopulso.mylakechile.com/api/v1 | URL base del API (útil para staging/local) |

Desarrollo

cd mcp-server
npm install
ECOPULSO_API_KEY=ek_... ECOPULSO_API_BASE=http://localhost:8000/api/v1 npm run dev

Para testear manualmente las tools podés mandar JSON-RPC por stdin.