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

@flarekit-dev/mcp

v1.0.0

Published

The Flare MCP server — read, plan and write tools for Flare and Coston2 over stdio, for Claude Code, Claude Desktop, Cursor and any MCP host. Most tools need no key at all.

Readme

@flarekit-dev/mcp

npm license

The Flare MCP server. Price feeds, confidential compute, portfolios, plans and swaps for Flare and Coston2, over stdio, for any Model Context Protocol host.

Most of it needs no key at all. Twelve of the thirteen tools are read or plan class and work with nothing configured.

Community-built. Not an official Flare Networks product.

Add it to a host

claude mcp add flare npx @flarekit-dev/mcp

Or, for a host that reads a JSON config:

{
  "mcpServers": {
    "flare": {
      "command": "npx",
      "args": ["@flarekit-dev/mcp"]
    }
  }
}

That is the whole setup. It defaults to Coston2 testnet — there is no implicit mainnet default, because selecting a network where value is real should be a deliberate act.

The tools

| Tool | Class | Key | | --- | --- | --- | | flare.capabilities.list | read | no | | flare.feeds.list | read | no | | flare.feeds.get | read | no | | flare.random.get | read | no | | flare.portfolio.get | read | no | | flare.operations.list | read | no | | flare.operations.get | read | no | | flare.tee.machines | read | no | | flare.tee.machine | read | no | | flare.wallet.status | read | no | | flare.quote | plan | no | | flare.plan | plan | no | | flare.execute | write | yes |

flare.capabilities.list also declares the tools that are not built, with the reason, so an agent can tell "not offered" from "you missed it".

What it will not do

  • It never reports submitted as succeeded. A broadcast transaction has been broadcast; whether it worked is a separate fact, and the chain answers it.
  • It never reports an unknown outcome as failed. A send that threw does not prove nothing was broadcast, so those become action_required with the hash, not a terminal failure that hides a swap which actually mined.
  • It never returns a balance it could not read as zero. An unread value is reported absent with a reason.
  • It never returns your private key, in any tool, on any path.

Signing

flare.execute is the only tool that signs. The key resolves in this order:

  1. FLARE_AGENT_PRIVATE_KEY
  2. ~/.flare-kit/agent-key.json (written 0600)
  3. generated, and persisted at 0600

Auto-generation is safe because a fresh account holds nothing. Read flare.wallet.status to see the address and balance — the blast radius — before funding it. On Coston2 the faucet is at faucet.flare.network/coston2.

A host that only reads and plans never causes a key to exist.

Configuration

| Variable | Meaning | | --- | --- | | FLARE_NETWORK | coston2 (default) or flare | | FLARE_RPC_URL | Override the registry's public RPC | | FLARE_AGENT_PRIVATE_KEY | The agent's signing key |

No secret is written to disk except the agent key, and none is ever logged or returned by a tool.

Operations

Every plan and execution is recorded under ~/.flare-kit/operations, one file per operation, and reconciled against the chain whenever you read it. There is no Resume button: flare.operations.list and flare.operations.get bring a submitted operation up to date as a side effect of being asked.

Building on it

The server defines no tools of its own. Every tool comes from @flarekit-dev/tools, which is transport-free — the same definitions are exposed to the Vercel AI SDK by @flarekit-dev/ai-sdk.

import { createMcpServer, createContext, resolveConfig } from '@flarekit-dev/mcp'

const server = createMcpServer({ context: createContext(resolveConfig()) })

Licence

MIT