@clawket/mcp
Integrates with GitHub repositories, specifically the Clawket project repository, for accessing and managing project artifacts, tasks, and documentation through semantic search capabilities.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@clawket/mcpsearch for recent decisions about authentication"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@clawket/mcp — DEPRECATED
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/releases2. 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.jsonLicense
MIT
Maintenance
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