board-spec-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., "@board-spec-mcpget spec for machine qrb5165"
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.
board-spec-mcp
MCP server that serves Qualcomm Yocto board specs (machine_creation +
partition_conf fields) from the roshs189/board-spec
git repo — one branch per machine. Built to replace reading a Confluence
"Partition Spec" page in the qcom-yocto-new-machine and
qcom-partition-conf-new-board Claude Code skills.
What it does
Clones/fetches
board-specinto a local cache (~/.cache/board-spec-mcp/repoby default).Reads a board's spec straight from its branch (
origin/<machine>:boards/<machine>/spec.yaml) without checking it out — no working-tree conflicts, always in sync with arefresh_specscall.Validates specs against
schema/board-spec.schema.json(onmain) plus the cross-checks the skills used to do by hand:delta=newpartitions need anotesjustification and must not collide with SoC-mandated names (xbl/tz/hyp/aop/...),partition_files_subdirmust equalpartitions/<machine>/<storage_type>, chip IDs shouldn't collide across boards.
Related MCP server: kube-lint-mcp
Setup (anyone, from scratch)
Requires Python 3.10+ and an SSH key with read access to
github.com/roshs189/board-spec (or set BOARD_SPEC_REPO_URL to a repo you
do have access to — see Configuration below).
git clone <this-repo-url> board-spec-mcp
cd board-spec-mcp
python3 -m venv .venv
.venv/bin/pip install -e .Verify it starts cleanly:
.venv/bin/board-spec-mcp # should hang waiting on stdin — Ctrl-C to exitRegister with Claude Code
Add a .mcp.json in the project you want this available in (or merge into
an existing one):
{
"mcpServers": {
"board-spec": {
"command": "/absolute/path/to/board-spec-mcp/.venv/bin/board-spec-mcp"
}
}
}Restart Claude Code (or run /mcp to reconnect) and the tools below become
available.
Configuration
Environment variables, all optional:
Variable | Default | Purpose |
|
| Remote to clone/fetch |
|
| Local bare-ish clone location |
Set these in the .mcp.json entry's "env" block if you need a fork or a
different cache path:
{
"mcpServers": {
"board-spec": {
"command": "/absolute/path/to/board-spec-mcp/.venv/bin/board-spec-mcp",
"env": { "BOARD_SPEC_REPO_URL": "git@github.com:<you>/board-spec.git" }
}
}
}Tools
list_boards()— every machine with a branch inboard-spec(excludesmain).get_board_spec(machine)— full spec.get_machine_creation_fields(machine)— just themachine_creationsection.get_partition_conf_fields(machine)— just thepartition_confsection.validate_board_spec(machine)—{valid, schema_errors, warnings}.refresh_specs()— fetch latest branches/commits (call after a spec is pushed).
Also exposed as a resource: board-spec://<machine>.
Adding a new board
Specs are human-authored and PR-reviewed in board-spec itself — this server
only reads, never writes. See that repo's README for the branch/PR workflow.
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/roshs189/board-spec-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server