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

@flowdot.ai/mcp-server

v1.0.1

Published

FlowDot MCP Server - Connect Claude Desktop, Cursor, and other AI tools to FlowDot workflows

Downloads

28

Readme

@flowdot.ai/mcp-server

Connect Claude Desktop, Cursor, and other MCP-compatible AI tools to FlowDot workflows.

What is MCP?

MCP (Model Context Protocol) is an open standard that allows AI models to interact with external tools and services. With the FlowDot MCP Server, you can:

  • List and run workflows directly from Claude Desktop or Cursor
  • Chat with the FlowDot agent to discover and execute workflows
  • Check execution status and get workflow results

Quick Start

1. Get an MCP Token

  1. Go to flowdot.ai
  2. Navigate to Settings > MCP Tokens
  3. Click Create New Token
  4. Select the scopes you need:
    • workflows:read - List and view workflows
    • workflows:execute - Execute workflows
    • executions:read - View execution results
    • agent:chat - Chat with the FlowDot agent
  5. Copy the token (starts with fd_mcp_)

2. Configure Claude Desktop

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "flowdot": {
      "command": "npx",
      "args": ["@flowdot.ai/mcp-server"],
      "env": {
        "FLOWDOT_API_TOKEN": "fd_mcp_your_token_here"
      }
    }
  }
}

3. Restart Claude Desktop

After adding the configuration, restart Claude Desktop to load the MCP server.

Available Tools

list_workflows

List your FlowDot workflows.

You: "What FlowDot workflows do I have?"

Claude: I'll check your FlowDot workflows.

        Found 3 workflow(s):
        - News Summarizer (abc123) - Fetches and summarizes daily news
        - Code Reviewer (def456) - Reviews PRs with AI
        - Content Generator (ghi789) - Creates blog content

execute_workflow

Execute a workflow by ID.

You: "Run my News Summarizer workflow"

Claude: I'll execute the News Summarizer workflow.

        Workflow executed successfully.

        Execution ID: exec_123abc
        Status: completed

        Outputs:
        {
          "summary": "Today's top stories: ..."
        }

get_execution_status

Check the status of a running or completed execution.

You: "What's the status of execution exec_123abc?"

Claude: Execution Status: Completed
        Execution ID: exec_123abc
        Started: 2024-12-28T10:00:00Z
        Completed: 2024-12-28T10:00:15Z
        Duration: 15.23s

agent_chat

Chat with the FlowDot agent to discover workflows.

You: "Ask FlowDot what workflows I have for content creation"

Claude: The FlowDot agent says:

        I found 2 workflows that can help with content creation:

        1. **Content Generator** - Creates blog posts from topics
        2. **Social Media Poster** - Generates and posts to social platforms

        Would you like me to run one of these?

Environment Variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | FLOWDOT_API_TOKEN | Yes | - | Your MCP token (starts with fd_mcp_) | | FLOWDOT_HUB_URL | No | https://flowdot.ai | FlowDot Hub URL |

Configuring Other MCP Clients

Cursor

Go to Settings > MCP Servers > Add Server and add:

{
  "flowdot": {
    "command": "npx",
    "args": ["@flowdot.ai/mcp-server"],
    "env": {
      "FLOWDOT_API_TOKEN": "fd_mcp_your_token_here"
    }
  }
}

Windsurf

Similar configuration as Cursor - check Windsurf documentation for MCP setup.

Development

# Install dependencies
npm install

# Build
npm run build

# Run locally
FLOWDOT_API_TOKEN=fd_mcp_xxx npm start

License

MIT