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

@xferops/forge-mcp

v2.0.0

Published

MCP server for Forge (XferOps project management) - works with Claude Code, Codex, OpenClaw, and any MCP consumer

Readme

⚒️ Forge MCP Server

MCP (Model Context Protocol) server for Forge — XferOps' project management system.

Works with Claude Code, OpenAI Codex, OpenClaw/mcporter, and any MCP-compatible consumer.

Migrated from @xferops/flower-mcp — see Migration Guide below.

Quick Start

1. Get Your API Token

  1. Go to forge.xferops.dev/settings
  2. Click New Token in the API Tokens section
  3. Give it a descriptive name and click Create Token
  4. Copy the token (it won't be shown again!)

2. Install

npm install -g @xferops/forge-mcp

Or use with npx (no install needed):

npx @xferops/forge-mcp

3. Configure Your MCP Consumer

See setup instructions below for your specific tool.


Setup Instructions

Claude Code (claude_desktop_config.json)

Add to ~/.config/claude/claude_desktop_config.json (macOS/Linux) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "forge": {
      "command": "npx",
      "args": ["-y", "@xferops/forge-mcp"],
      "env": {
        "FORGE_URL": "https://forge.xferops.dev",
        "FORGE_TOKEN": "your-api-token-here"
      }
    }
  }
}

OpenClaw / mcporter

Add to ~/.mcporter/mcporter.json:

{
  "mcpServers": {
    "forge": {
      "command": "npx",
      "args": ["-y", "@xferops/forge-mcp"],
      "env": {
        "FORGE_URL": "https://forge.xferops.dev",
        "FORGE_TOKEN": "your-api-token-here"
      }
    }
  }
}

Then use with mcporter:

mcporter call forge.forge_list_teams
mcporter call forge.forge_get_project projectId=abc123
mcporter call forge.forge_search_tasks query="ADM-5"

Environment Variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | FORGE_TOKEN | Yes | — | Your API token from forge.xferops.dev/settings | | FORGE_URL | No | https://forge.xferops.dev | API base URL | | FLOWER_TOKEN | No | — | Legacy alias for FORGE_TOKEN (deprecated) | | FLOWER_URL | No | — | Legacy alias for FORGE_URL (deprecated) | | KANBAN_TOKEN | No | — | Legacy alias for FORGE_TOKEN (deprecated) | | KANBAN_URL | No | — | Legacy alias for FORGE_URL (deprecated) |


Available Tools (26)

Health

| Tool | Description | |------|-------------| | forge_health_check | Check API connectivity and configured URL |

Teams

| Tool | Description | |------|-------------| | forge_list_teams | List all teams you belong to | | forge_create_team | Create a new team | | forge_list_team_members | List team members (get user IDs for assignment) | | forge_add_team_member | Add a user to a team by email |

Projects

| Tool | Description | |------|-------------| | forge_list_projects | List projects in a team | | forge_get_project | Get project with all columns and tasks | | forge_create_project | Create a new project | | forge_update_project | Update project name/prefix | | forge_delete_project | Delete a project |

Columns

| Tool | Description | |------|-------------| | forge_create_column | Create a column (e.g., "Backlog", "Done") | | forge_update_column | Rename a column | | forge_delete_column | Delete a column (optionally move tasks) | | forge_reorder_columns | Reorder columns |

Tasks

| Tool | Description | |------|-------------| | forge_get_task | Get a single task by ID | | forge_list_tasks | List all tasks in a project | | forge_search_tasks | Search tasks by title/description/ticket ID (e.g., "ADM-5") | | forge_create_task | Create a new task | | forge_update_task | Update task or move to different column | | forge_move_task | Move task to a different column (convenience wrapper) | | forge_delete_task | Delete a task | | forge_reorder_task | Move task to specific position within a column |

Comments

| Tool | Description | |------|-------------| | forge_list_comments | List comments on a task | | forge_create_comment | Add a comment | | forge_update_comment | Edit your comment | | forge_delete_comment | Delete your comment |


Migration Guide

Migrating from @xferops/flower-mcp?

1. Update your MCP config

- "command": "npx",
- "args": ["-y", "@xferops/flower-mcp"],
- "env": {
-   "FLOWER_URL": "https://flower.xferops.dev",
-   "FLOWER_TOKEN": "your-token"
- }
+ "command": "npx",
+ "args": ["-y", "@xferops/forge-mcp"],
+ "env": {
+   "FORGE_URL": "https://forge.xferops.dev",
+   "FORGE_TOKEN": "your-token"
+ }

2. Update tool calls

All tools are renamed from flower_* to forge_*:

- flower_search_tasks query="ADM-5"
+ forge_search_tasks query="ADM-5"

Note: FLOWER_URL / FLOWER_TOKEN env vars are still accepted as fallbacks during the transition period.


Development

git clone https://github.com/XferOps/forge-mcp.git
cd forge-mcp
npm install
npm run build

# Run locally
FORGE_TOKEN=your-token node dist/index.js

OpenClaw Skill

Install via ClawHub:

npx clawhub@latest install xferops-forge

Versioning

| Tag | Version | |-----|---------| | v2.x | Forge MCP (@xferops/forge-mcp) | | v1.x | Flower MCP (@xferops/flower-mcp) — deprecated |

Tag and release:

git tag v2.x.x && git push --tags

CI will publish to npm and ClawHub automatically.


License

MIT © XferOps