Stdio MCP: search GPUI docs, book, tutorial, and official examples
MCPpedia last refreshed this data
MCP Server Gpui Docs is an MCP server that stdio MCP: search GPUI docs, book, tutorial, and official examples. Its tool list has not been published yet over stdio and http, requires no API key, and scores 39/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"mcp-server-gpui-docs": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Local stdio MCP that indexes GPUI documentation and examples so an agent can search them instead of guessing APIs.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in education
1000+ scientific tools for AI scientists: life science, reserach, literature, and more.
A Model Context Protocol server for searching and analyzing arXiv papers
ARIS ⚔️ (Auto-Research-In-Sleep) — Lightweight Markdown-only skills for autonomous ML research: cross-model review loops, idea discovery, and experiment automation. No framework, no lock-in — works with Claude Code, Codex, OpenClaw, or any LLM agent.
Daofy for Delphi — MCP Server that compiles Delphi projects and queries knowledge base for AI assistants.
MCP Security Weekly
Get CVE alerts and security updates for MCP Server Gpui Docs and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Local stdio MCP that indexes GPUI documentation and examples so an agent can search them instead of guessing APIs.
This is not a GPUI runtime. It clones/pulls public GPUI sources and serves search / get over MCP.
Indexed sources (after sync):
| id | what |
|---|---|
gotchas | bundled current-API pitfalls (always present) |
book | GPUI Book |
tutorial | gpui-tutorial |
gpui-component | Longbridge gpui-component |
zed-gpui | sparse clone of Zed crates/gpui (README + examples) |
awesome | awesome-gpui |
Corpus (markdown + example files):
list_sources — countssearch / get — keyword docslist_examples / get_exampleOracle (from Zed crates/gpui source via syn — prefer these):
gpui_scaffold — Cargo.toml + gpui_platform::application() main (git deps pinned)gpui_recipe — curated boot / entity / uniform_list / custom Element canvas / 16ms pollgpui_symbol / gpui_search / gpui_type_methods — signatures from source (type_methods lists trait methods when the name is a trait; pass filter for Window.paint_*)gpui_styled_methods — flex / bg / padding (macro-generated)gpui_examples / gpui_list_examples / gpui_example_file — examples that use a symbolgpui_decode_error — paste rustc outputgpui_status — index freshnesssync — clone/pull and rebuild the oracle (--rebuild on the CLI rebuilds only the oracle)Cache: ~/.cache/mcp-server-gpui-docs (override GPUI_MCP_CACHE or XDG_CACHE_HOME). HOME or GPUI_MCP_CACHE is required — the server will not use /tmp.
Gotchas are compiled into the binary (include_str!), so cargo install still serves them.
Set GPUI_MCP_SYNC_ON_START=1 to clone on launch (slow first time; zed is sparse). sync writes to the cache (git clone/pull).
Zed pin: sync checks out crates/gpui at d9ad6aff67e47de43abb270d22de75dd950f1b48 (RustRivetGPUI's gpui rev) so symbol signatures match the app, not Zed main. Override with GPUI_MCP_ZED_REV=<sha> or GPUI_MCP_ZED_REV=HEAD to follow the default branch.
Search: unscoped search ranks gotchas and zed-gpui above gpui-component. Pass source to restrict. The GPUI book page implementing-element is a stub — use gpui_recipe(query="custom element canvas").
Needs Rust (edition 2024) and git on PATH.
cargo build --release
Binary: target/release/mcp-server-gpui-docs
Or:
cargo install --git https://github.com/codeChap/mcp-server-gpui-docs
Point the client at the built binary (stdio). Server id should be gpui-docs so it is distinct from GPUI the framework:
[mcp_servers.gpui-docs]
command = "/path/to/mcp-server-gpui-docs"
enabled = true
startup_timeout_sec = 60
Then call sync once, then search / get before writing GPUI.
MIT