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

@fyio/buildfyio-mcp

v0.1.3

Published

Model Context Protocol server for Buildfyio. Deploy from Claude / Cursor / Windsurf without leaving the conversation.

Readme

@fyio/buildfyio-mcp

The official Model Context Protocol server for Buildfyio. Lets AI agents deploy, roll back, tail logs, diagnose build failures, and manage env vars on Buildfyio — with scoped tokens and human-in-the-loop safety for destructive ops.

Quick install

npm i -g @fyio/buildfyio-cli
buildfy login
buildfy mcp install claude-code    # or: claude-desktop | cursor | windsurf

Restart your agent host. Then try:

"List every project in my Buildfyio workspace."

"Deploy the main branch of agent-demo to production and tail the build logs until it's done."

"The last production deploy of agent-demo failed. Diagnose it and either fix the env var or retry."

Manual install (any MCP client)

Add to your client's mcp_servers.json (or equivalent):

{
  "mcpServers": {
    "buildfyio": {
      "command": "npx",
      "args": ["-y", "@fyio/buildfyio-mcp"],
      "env": {
        "BUILDFYIO_TOKEN": "bfy_...",
        "BUILDFYIO_ORG": "org_..."
      }
    }
  }
}

Mint a token at Settings → API Tokens or via buildfy mcp install. Tokens carry one or more scopes: read, deploy, write.

Tools

| Tool | Scope | What it does | | ----------------------- | ------- | ---------------------------------------------------------------------------- | | list_projects | read | List projects in an org | | create_project | write | Create a project from a git repo URL | | deploy | deploy | Trigger a deployment | | get_deployment_status | read | Status, URL, failure reason | | get_logs | read | build / deploy / runtime logs | | get_build_failure | read | Structured JSON diagnosis of a failed build (agent-native) | | set_env_var | write | Create or update an env var | | rollback | write | Roll production back. Destructive — requires confirm: true |

Safety model

  • Scopes. Every tool declares a required scope. If the token doesn't have it, the server refuses with TOKEN_MISSING_SCOPE — an actionable error the agent can explain to the user.
  • Confirmation. rollback requires confirm: true in its arguments. Agents that call it without confirming get a validation error.
  • Audit. Every call is logged with actor_type = ai_agent so the dashboard clearly distinguishes agent activity from humans.
  • Rate limits. 120 req/min per token by default. Returns HTTP 429 with Retry-After.

Remote endpoint

https://mcp.buildfyio.com/v1/mcp — OAuth 2.1 + PKCE.

Use this from Claude.ai web, custom in-house agents, or any client that supports Streamable-HTTP transport.

License

MIT © Buildfyio