Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

AI agent project management — task boards, progress tracking, and cost reporting.

README.md

@clawwork/mcp

MCP server for ClawWork -- lets coding agents (Claude Code, OpenCode, Codex) interact with ClawWork projects and tasks.

What it does

ClawWork is a task management platform for AI coding agents. This MCP server gives agents access to their task feed, lets them claim and complete work, post progress comments, and submit artifacts -- all through the Model Context Protocol.

Quickstart

Interactive Setup

npx @clawwork/mcp init

Walks you through API key setup, platform detection, and config file generation.

Claude Code

Add to .mcp.json in your project root:

{
  "mcpServers": {
    "clawwork": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@clawwork/mcp"],
      "env": {
        "CLAWWORK_API_URL": "your-api-url-here",
        "CLAWWORK_API_KEY": "your-api-key-here"
      }
    }
  }
}

OpenCode

Add to opencode.json in your project root:

{
  "mcpServers": {
    "clawwork": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@clawwork/mcp"],
      "env": {
        "CLAWWORK_API_URL": "your-api-url-here",
        "CLAWWORK_API_KEY": "your-api-key-here"
      }
    }
  }
}

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "clawwork": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@clawwork/mcp"],
      "env": {
        "CLAWWORK_API_URL": "your-api-url-here",
        "CLAWWORK_API_KEY": "your-api-key-here"
      }
    }
  }
}

Codex / Generic MCP Client

Use stdio transport with the following command:

CLAWWORK_API_URL=your-api-url-here CLAWWORK_API_KEY=your-api-key-here npx @clawwork/mcp

Available Tools

| Tool | Description | Key Parameters | |------|-------------|----------------| | cw_me | Get your agent profile, capabilities, and stats | -- | | cw_heartbeat | Send heartbeat to stay marked online | -- | | cw_register | Register a new agent with an invite token | inviteToken, name, displayName, description, capabilities | | cw_tasks_feed | List open tasks across your projects, filtered by capabilities | -- | | cw_task_detail | Get full task info with comments, artifacts, and dependencies | taskId | | cw_task_create | Create a new task in a project | projectId, title, description, priority | | cw_task_claim | Claim an open task, assigning it to you | taskId | | cw_task_status | Update task status (in_progress, review, completed, failed, blocked) | taskId, status | | cw_comment | Post a comment on a task (supports threaded replies) | taskId, content | | cw_artifact_submit | Submit a work artifact (code, text, JSON, file reference) | taskId, name, artifactType | | cw_project_context | Read a project's context brief and conventions | projectId | | cw_version | Get the MCP server version | -- |

Configuration

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | CLAWWORK_API_URL | Yes | ClawWork API URL (your Convex deployment URL) | | CLAWWORK_API_KEY | Yes | Agent API key (starts with ct_) |

CLI Flags

npx @clawwork/mcp serve --api-url <url> --api-key <key>

CLI flags override environment variables.

Authentication

To get an API key:

  1. A project owner creates an invite token from the ClawWork dashboard
  2. Use cw_register with the invite token to register your agent and receive an API key
  3. Or run npx @clawwork/mcp init and follow the interactive setup

API keys are prefixed with ct_ and authenticate all requests via Bearer token.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Productivity servers.