Silvaco Handbook MCP
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., "@Silvaco Handbook MCPShow me an official example of a quantum well laser gain simulation"
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.
Silvaco Handbook MCP
An MCP (Model Context Protocol) server that gives AI assistants fast, bounded access to the Silvaco TCAD manuals and the official Deckbuild example decks — without dumping thousands of PDF pages into the conversation context.
It indexes MinerU-converted Markdown of the manuals into a local SQLite FTS5 database and exposes context-friendly search/read tools over stdio. Each manual section carries its original PDF page range, so results can be cross-referenced with the source PDFs.
Features
Handbook corpus — section-level index of the Silvaco manuals (Deckbuild, Victory Device, Victory Process, ...) with original PDF page ranges preserved.
Examples corpus — full-text index of the official
.inexample decks from your Silvaco installation (examples/deckbuild/<version>).Bounded output — every tool has hard caps (search ≤ 30 hits, read ≤ 20 000 chars, paged via
offset) so the LLM context stays small.Incremental indexing — the index is rebuilt lazily on startup whenever a Markdown file or example deck changes (size/mtime fingerprint).
Related MCP server: MokuPDF
Tools
Tool | Description |
| List indexed manuals with section counts and source paths |
| Section headings of a manual (its table of contents), optional title filter |
| Full-text search; returns section id, title, PDF page range, highlighted snippet |
| Read one section by id; page through long sections with |
| List indexed example decks (name / category / description) |
| Full-text search over deck name, description, and content |
| Read one example deck in full (partial unique names accepted) |
Requirements
Python ≥ 3.10
Python packages:
mcp,pymupdf(seerequirements.txt)MinerU Open API CLI (
mineru-open-api) plus an API token — only needed forconvert_mineru.pyThe Silvaco manuals as PDFs, and (optionally) a Silvaco installation for the example decks
Install the Python dependencies:
pip install -r requirements.txtQuick start
1. Convert the manuals to Markdown
MinerU's precision extract is limited to 200 pages per request, so
convert_mineru.py processes each PDF in page-range chunks, marks chunk
boundaries with <!-- pdf pages S-E --> comments, and merges them into one
Markdown file per manual. It is resumable: existing chunks are skipped on
re-run.
export MINERU_TOKEN=<your-mineru-token>
export SILVACO_PDF_DIR=/path/to/silvaco/handbook/pdfs
export SILVACO_MD_DIR=/path/to/markdown/output
# Convert every PDF in SILVACO_PDF_DIR (or only one manual with --only)
python convert_mineru.py
python convert_mineru.py --only deckbuild_users1 --chunk-size 200Output layout:
<SILVACO_MD_DIR>/<manual>/chunks/p001-200.md # one per chunk
<SILVACO_MD_DIR>/<manual>/chunks/images/ # extracted images
<SILVACO_MD_DIR>/<manual>/<manual>.md # merged, indexed by the server2. Build the index
python server.py --build # incremental
python server.py --build --force # full rebuildThe index also rebuilds itself lazily when the server starts and a source file has changed, so this step is optional.
3. Register the MCP server
Add it to your MCP client configuration.
Kimi Code / Claude Code (.kimi-code/mcp.json or .claude/mcp.json):
{
"mcpServers": {
"silvaco-handbook": {
"command": "python",
"args": ["/path/to/Silvaco_MCP/server.py"],
"env": {
"SILVACO_MD_DIR": "/path/to/markdown/output",
"SILVACO_EXAMPLES_DIR": "C:/Silvaco/examples/deckbuild/5.2.40.R"
}
}
}
}Claude Desktop (claude_desktop_config.json): same mcpServers block.
Cursor: Settings → MCP → add the same command/args/env.
4. Ask questions
Once connected, your assistant can answer with manual citations, e.g.:
"How does Atlas model impact ionization with the Selberherr model?" →
handbook_search("impact ionization Selberherr")→handbook_read(...)"Show me an official example of a quantum well laser gain simulation." →
examples_search("quantum well laser optical gain")→examples_read(...)
Configuration
All paths are set via environment variables:
Variable | Default | Purpose |
|
| Root of converted manual Markdown ( |
|
| SQLite FTS5 cache location |
| (unset → examples tools disabled) | Root of the official deckbuild examples tree |
| (vault layout default) | Handbook PDF directory (used by |
| (vault layout default) |
|
| — | MinerU Open API token (takes precedence over config file) |
|
| Path/name of the MinerU CLI executable |
Usage examples
Typical agent workflow with the tools:
handbook_list_manuals()
→ [{"manual": "deckbuild_users1", "sections": 481, ...}, ...]
handbook_search("impact ionization Selberherr", manual="victorydevice")
→ [{"section_id": 512, "section": "3.7.4 Impact Ionization Models",
"pdf_pages": "201-400", "snippet": "... **Selberherr** ..."}, ...]
handbook_read("victorydevice", section_id=512)
→ "===== victorydevice [512] 3.7.4 Impact Ionization Models (pdf p.201-400) =====
... full section text ..."
handbook_read("victorydevice", section_id=512, offset=12000) # continue long sections
examples_search("quantum well laser optical gain", category="Opto")
→ [{"name": "optoex14", "category": "Technology/Opto_and_Photonics",
"description": "Quantum Well Laser ...", "snippet": "..."}, ...]
examples_read("optoex14")
→ "===== example optoex14 [...] =====\n# Quantum Well Laser ...\ngo atlas ..."Maintenance
Manual PDFs updated → re-run
python convert_mineru.py(incremental); the index rebuilds automatically on the next server start, or force it withpython server.py --build.Example decks changed under
SILVACO_EXAMPLES_DIR→ the index is updated incrementally on startup (deleted decks are dropped as well).The
.cache/directory is derived state — safe to delete at any time.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceEnables AI assistants to search and query PDF documents through a local RAG system with vector embeddings. Provides semantic document search capabilities while keeping all data stored locally without external dependencies.
- Alicense-qualityDmaintenanceEnables AI applications to read and process PDF files with intelligent file search, text extraction, image processing, and optional OCR support for scanned documents.MIT
- AlicenseAqualityDmaintenanceEnables reading, searching, and metadata extraction from PDF files without loading the entire content into the context window. It provides efficient tools for text cleaning, page-specific extraction, and context-aware search results.3451MIT
- Flicense-qualityDmaintenanceEnables semantic search and conversational querying across a personal research library of PDFs, DOCX, and other documents using a vector database. It provides tools for document summarization, finding related papers, and high-accuracy retrieval for AI clients like Claude Desktop.
Related MCP Connectors
Page-cited retrieval for embedded docs, datasheets, MISRA, CMSIS, and RTOS references.
Search arXiv/Semantic Scholar/OpenAlex + medical evidence (PubMed/Europe PMC) + LaTeX/PDF tools.
Provide your AI coding tools with token-efficient access to up-to-date technical documentation for…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/zd0818/Silvaco_MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server