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

finops-focus-mcp

v0.1.0

Published

Unofficial MCP server exposing the version-aware FOCUS (FinOps Open Cost & Usage Specification) to AI agents: columns, attributes, glossary, cross-version diffs, and a derived KPI-to-column mapping bridging it to the FinOps Framework.

Readme

finops-focus-mcp

An unofficial MCP server that gives AI agents a structured, version-aware interface to the FOCUS (FinOps Open Cost & Usage Specification) published by the FinOps Foundation / FinOps-Open-Cost-and-Usage-Spec project. FOCUS columns are added, renamed, deprecated, and re-semanticized across releases — this server pins every answer to a spec version (1.0 or 1.2, default 1.2) instead of blending them.

This package is a publish shim: it ships the built focus MCP server from the finops-framework-mcp monorepo as its own installable npm package, decoupled from the companion finops-framework-mcp package (the companion unofficial server for the FinOps Framework published at finops.org/framework). See that repository for source, tests, and contribution docs.

Quickstart

npx -y finops-focus-mcp

(-y skips npx's first-run install prompt, which can hang non-interactive MCP clients; pin a version with npx -y finops-focus-mcp@latest or @0.1.)

Claude Code:

claude mcp add focus-spec -- npx -y finops-focus-mcp

Claude Desktop (claude_desktop_config.json):

{
  "mcpServers": {
    "focus-spec": {
      "command": "npx",
      "args": ["-y", "finops-focus-mcp"]
    }
  }
}

Generic stdio client:

{
  "command": "npx",
  "args": ["-y", "finops-focus-mcp"]
}

Tool surface

list_versions, get_column, list_columns, search_focus, get_attribute, get_requirements, compare_versions, get_kpi_mapping, calculate_kpi. Version-parameterized tools take an optional version parameter (defaults to 1.2) and echo spec_version in their structured content; list_versions and compare_versions are version-independent.

get_kpi_mapping and calculate_kpi are derived, unofficial extensions — no official FOCUS-to-FinOps-KPI mapping exists upstream. Every record from these two tools is marked official: false with an in-text UNOFFICIAL banner; see NOTICE.md.

The full prompts/resources/tools hierarchy of this server (and its sibling finops-framework-mcp) — names, args, URIs, param defaults/limits — is generated from live MCP output in the monorepo at docs/mcp-surface.md.

Data & licensing

FOCUS spec text, attributes, glossary, and the official sample dataset are © FinOps Foundation / FOCUS project contributors, licensed CC BY 4.0. See NOTICE.md for full attribution and the no-endorsement note. Code in this package is MIT-licensed (LICENSE).

Version

npx -y finops-focus-mcp --version