LobsterMCP
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., "@LobsterMCPhow do I configure the primary model?"
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.
LobsterMCP
OpenClaw documentation, queryable by AI agents — so Claude Code stops guessing and starts knowing.
Author: Osama · License: MIT · Unofficial community tool, not affiliated with or endorsed by OpenClaw.
What is this?
OpenClaw is an AI agent platform for connecting LLMs to messaging channels, tools, and services. When Claude Code (or any AI agent) works on an OpenClaw project, it needs to look things up constantly: How do I configure a model? What's the JSON5 syntax for provider auth? How do I set up multi-agent routing?
LobsterMCP is an MCP server that puts the full OpenClaw documentation directly in front of your agent — 194 entries across 13 topics, indexed with BM25 search. No web lookups, no hallucinations, no asking the user to go find the docs.
Related MCP server: Swarms MCP Documentation Server
Installation
Option 1 — Claude Code (local build)
git clone https://github.com/osamac2128/lobstermcp
cd lobstermcp
npm install && npm run build
claude mcp add lobster-mcp -s user -- node /absolute/path/to/lobstermcp/dist/index.jsOption 2 — Claude Code settings.json
{
"mcpServers": {
"lobster-mcp": {
"command": "node",
"args": ["/absolute/path/to/lobstermcp/dist/index.js"]
}
}
}Tools
resolve-topic
Finds the right documentation topic for your query. Call this first.
Input: { query: "models" }
Output: {
topics: [{
topicId: "models",
name: "Models & Model Selection",
description: "Configuring primary models, fallbacks, allowlists...",
entryCount: 5,
confidence: 1.0,
relatedTopics: ["providers", "configuration", "agents"]
}]
}query-config-docs
Returns full documentation and code examples for your query.
Input: { query: "set primary model anthropic", topicId: "models" }
Output: Markdown with full docs, config snippets, CLI examples, and source URLsTopics
Topic ID | Entries | Covers |
| 5 | Primary model, fallbacks, allowlists, aliases, |
| 18 | Anthropic, OpenAI, OpenRouter, Ollama, GLM, GitHub Copilot, and more |
| 5 |
|
| 21 | Running the gateway, remote access, pairing, protocol, multiple gateways, ACP bridge |
| 20 | Agent runtime, workspaces, |
| 6 | Session keys, compaction, pruning, session store |
| 16 | exec, browser, web search, agent-send, slash commands, llm-task, subagents |
| 10 | Creating skills ( |
| 23 | Telegram, Discord, Slack, WhatsApp, Matrix, Signal, iMessage, and more |
| 23 | Installation, onboarding wizard, Docker, updating, platform guides |
| 23 | Memory, system prompts, context, streaming, queue, retry, usage tracking |
| 11 | Sandboxing, elevated tools, exec approvals, tool policies |
| 13 |
|
13 topics · 194 documentation entries
Example queries
resolve-topic: "how to configure a model"
→ topicId: "models"
query-config-docs: "set primary model anthropic claude", topicId: "models"
→ Full docs on agents.defaults.model.primary, fallbacks, allowlist config
resolve-topic: "anthropic api key"
→ topicId: "providers"
query-config-docs: "anthropic setup-token auth", topicId: "providers"
→ Full docs on setup-token vs API key, onboarding wizard, config snippet
resolve-topic: "run gateway background"
→ topicId: "gateway"
query-config-docs: "multi-agent routing bindings", topicId: "agents"
→ Full docs on agents.list, bindings, agentId, isolated workspacesArchitecture
Search — BM25 in-memory search with Porter stemmer and field boosting (title 3×, tags 2×, description 1.5×)
Storage — Static JSON files loaded at startup, zero runtime dependencies
Transport — MCP stdio transport (works with any MCP-compatible client)
Content — Sourced from official OpenClaw documentation
lobstermcp/
├── src/
│ ├── index.ts # MCP server entry point
│ ├── tools/
│ │ ├── resolve-topic.ts # Topic resolution tool
│ │ └── query-docs.ts # Doc search tool
│ ├── search/
│ │ ├── engine.ts # BM25 search engine
│ │ └── tokenizer.ts # Porter stemmer tokenizer
│ └── store/
│ ├── index.ts # DocStore class
│ ├── loader.ts # Content file loader
│ └── types.ts # Shared types
├── content/ # Documentation JSON (13 files + topics.json)
└── scripts/
└── build-openclaw-content.mjs # Regenerate content from OpenClaw sourceUpdating the content
Content is generated from the OpenClaw source docs. To regenerate:
# Requires openclaw source at ../openclaw (relative to this repo)
node scripts/build-openclaw-content.mjs
npm run buildDevelopment
npm install # Install dependencies
npm run build # Compile TypeScript
npm run dev # Watch mode
npm start # Run serverRequirements
Node.js 18+
Any MCP-compatible client (Claude Code, Claude Desktop, etc.)
License
MIT — © Osama
This server cannot be installed
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
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/osamac2128/lobstermcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server