Skip to main content
Glama
clawket
by clawket

@clawket/mcp — DEPRECATED

WARNING

This package is no longer maintained. The Clawket MCP server is now built into the @clawket/cli Rust binary as the clawket mcp subcommand. There are no plans to publish further versions of this npm package.

Why the move

The original @clawket/mcp was a thin Node wrapper that called into the Clawket daemon over HTTP. Shipping the MCP server as a CLI subcommand removes the Node runtime dependency, halves the cold-start time, and keeps the MCP contract version-locked to the daemon contract — one binary, one source of truth.

Migration

1. Install the CLI

# macOS / Linux
brew install clawket/tap/clawket

# or download from GitHub Releases
# https://github.com/clawket/cli/releases

2. Update your MCP client config

Replace any @clawket/mcp entry with a direct call to the clawket binary.

Before (~/.config/claude/mcp.json or equivalent):

{
  "mcpServers": {
    "clawket": {
      "command": "npx",
      "args": ["-y", "@clawket/mcp"]
    }
  }
}

After:

{
  "mcpServers": {
    "clawket": {
      "command": "clawket",
      "args": ["mcp"]
    }
  }
}

The MCP tool surface (clawket_search_artifacts, clawket_search_tasks, clawket_find_similar_tasks, clawket_get_task_context, clawket_get_recent_decisions) is identical — only the transport changed.

3. Uninstall the npm package

npm uninstall -g @clawket/mcp     # if installed globally
# or remove from your project's package.json

License

MIT

Install Server
A
license - permissive license
A
quality
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
1Releases (12mo)

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/clawket/mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server