UVM 1.2 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., "@UVM 1.2 MCPShow me the uvm_driver class hierarchy and its key methods."
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.
UVM 1.2 MCP for Claude
An MCP (Model Context Protocol) server that gives Claude source-code-level knowledge of UVM 1.2 — the Universal Verification Methodology.
When active, Claude can browse actual UVM source files, trace class hierarchies, read method implementations, and retrieve curated expert insights — enabling answers far beyond what general documentation provides.
UVM 1.2 source code and the pre-built knowledge base are bundled in this repository. No additional downloads or build steps required.
What Claude can do with this MCP
Tool | What it does |
| Regex search across all |
| Full class source code |
| Ancestor / descendant tree |
| All methods in a class |
| Exact method implementation |
| Browse all 100+ UVM classes |
| Raw file content with line numbers |
| File tree by subsystem |
| Macro definition from |
| Natural-language search (RAG) |
| Deep dive combining source + expert knowledge |
Related MCP server: CodeSense MCP
Requirements
Python 3.10+
~200 MB free disk space (for the Python virtual environment)
No GPU required
No external API keys
Installation
1. Clone the repository
git clone https://github.com/YOUR_USERNAME/UVM_MCP.git
cd UVM_MCP2. Create a virtual environment and install dependencies
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txtThe first run will automatically download the
all-MiniLM-L6-v2embedding model (~90 MB).
Configure Claude Code
Add the following to ~/.claude/settings.json (create the file if it doesn't exist):
{
"mcpServers": {
"uvm": {
"command": "/absolute/path/to/UVM_MCP/.venv/bin/python",
"args": ["/absolute/path/to/UVM_MCP/server.py"]
}
}
}Replace /absolute/path/to/UVM_MCP with the actual path where you cloned the repo.
Example (if cloned to your home directory):
{
"mcpServers": {
"uvm": {
"command": "/Users/yourname/UVM_MCP/.venv/bin/python",
"args": ["/Users/yourname/UVM_MCP/server.py"]
}
}
}Restart Claude Code after saving.
Verify
After restarting, open a new conversation and run:
/mcpYou should see uvm listed as a connected server.
Then try asking Claude:
"Explain how
uvm_drivercommunicates with the sequencer, and show me the relevant source code."
Claude will automatically call the UVM MCP tools to answer with actual source-level detail.
UVM 1.2 Source
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.
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/luoyonghao1997/uvm-source-code-1.2-knowledge-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server