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

@floomhq/mcp-server

v0.1.6

Published

MCP server for Floom, lets AI agents deploy and run apps

Readme

@floomhq/mcp-server

MCP server for Floom. Lets AI agents (Claude, Cursor) deploy and run Python apps.

Setup

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "floom": {
      "command": "npx",
      "args": ["@floomhq/mcp-server"],
      "env": {
        "FLOOM_URL": "http://localhost:3001",
        "FLOOM_API_KEY": "your-api-key"
      }
    }
  }
}

Cursor

Add to MCP settings with the same command and environment variables.

Agent Workflow

  1. Write Python with @app.action and type hints
  2. deploy(code, name) -> project_id + slug + endpoint list
  3. run(slug, action, input) -> result (synchronous, no polling needed)
  4. create_share_link(project_id) -> public URL for anyone

Advanced:

  • manage_secrets() -> set API keys before running
  • storage_set/get() -> persist data across runs
  • create_schedule() -> run on cron
  • deploy_from_github() -> deploy from repo URL
  • promote/rollback() -> version management

For the complete agent workflow guide, see AGENT_GUIDE.md.

Tools (32 total)

Core Workflow

  • deploy - Deploy Python code with optional config and requirements
  • run - Execute an endpoint by slug+action or project_id+endpoint_id (auto-polls until result)
  • list_projects - List all deployed apps
  • get_project - Get app details and endpoint schemas
  • delete_project - Remove a project
  • update_project - Update project name or slug

Version Management

  • list_versions - Show dev/prod versions with hashes
  • promote - Promote a version to production with health check
  • rollback - Rollback to a previous version

Storage (persistent key-value)

  • storage_set - Store a value (up to 10MB)
  • storage_get - Retrieve a value by key
  • storage_delete - Remove a key
  • storage_list - List all keys for a project

Secrets

  • manage_secrets - Set, list, or delete encrypted API keys (action param)

Share Links

  • create_share_link - Generate a public URL
  • list_share_links - List existing links
  • disable_share_link - Revoke a share link

Context (project metadata)

  • fetch_context - Pull context from a URL
  • get_context - Get a stored context
  • list_contexts - List all contexts
  • delete_context - Remove a context
  • refresh_context - Re-fetch a context from its URL

Scheduling

  • create_schedule - Set up cron-based execution
  • list_schedules - List schedules for a project
  • delete_schedule - Remove a schedule

Templates

  • list_templates - Browse starter templates
  • get_template - Get template details and code
  • create_from_template - Create a project from a template

GitHub

  • deploy_from_github - Deploy directly from a GitHub repo URL

Webhooks

  • enable_webhooks - Enable inbound webhook triggers
  • disable_webhooks - Disable webhooks

Logs

  • get_logs - View recent execution logs with error details and suggested fixes

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | FLOOM_URL | Yes | Floom server URL | | FLOOM_API_KEY | No | API key (optional in OSS mode) |

License

MIT