suitest-docs
Enables searching and retrieving pages from the Suitest documentation via full-text search without live network calls.
README
suitest-docs-mcp
An MCP server exposing the Suitest documentation as searchable tools for LLM clients (Claude Code, Claude Desktop, etc).
It works by crawling suite.st/docs once into local Markdown files, indexing them into a SQLite FTS5 full-text search database, then serving search_docs / get_page tools from that local index over stdio. No live network calls to suite.st happen at runtime.
Note:
suite.st/docs/sitemap.xmlis broken upstream (every<loc>is the literal string"None"), so the crawler discovers pages by following links from the docs homepage instead.
Setup
npm install
npm run crawl # crawls suite.st/docs -> data/pages/*.md (takes a few minutes)
npm run build-index # builds data/docs.db from data/pages/*.md
Re-run both commands whenever you want to refresh the content (there's no automatic re-crawl).
Running the server
npm start
This starts the MCP server on stdio.
A .mcp.json is already checked into this project root, so any Claude Code session (CLI or the VS Code extension — no global claude npm install required) opened against this project will pick it up automatically:
{
"mcpServers": {
"suitest-docs": {
"command": "npx",
"args": ["tsx", "src/server.ts"]
}
}
}
If you have the claude CLI installed, you can instead register it globally with:
claude mcp add suitest-docs -- npx tsx /absolute/path/to/docs-mcp/src/server.ts
(Or point at the compiled dist/server.js after running npm run build.)
Tools
search_docs(query, limit?)— full-text search over the indexed docs, returns ranked results with snippets.get_page(url)— fetches the full Markdown content of a page by URL (as returned bysearch_docs).
Debugging
npx @modelcontextprotocol/inspector npx tsx src/server.ts
It's intentionally not a project devDependency (its concurrently → shell-quote transitive dependency currently has an unpatched critical advisory) — npx fetches and discards it on demand instead. If npx hits a stale/corrupted cached install, clear it with npm cache clean --force and retry, or run npm install --no-save @modelcontextprotocol/inspector temporarily.
License & content
The code in this repository (crawler, indexer, MCP server) is MIT licensed — see LICENSE.
The documentation content itself is © Suitest, "all rights reserved." This repo does not redistribute it: data/ (crawled Markdown + the SQLite index) is gitignored and generated locally by each user via npm run crawl && npm run build-index.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。
mcp-server-qdrant
这个仓库展示了如何为向量搜索引擎 Qdrant 创建一个 MCP (Managed Control Plane) 服务器的示例。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。