GOV.UK Design System 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., "@GOV.UK Design System MCPsearch for button guidance"
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.
GOV.UK Design System MCP
TypeScript MCP server that serves locally-crawled GOV.UK Design System guidance from SQLite FTS5.
Features
Manual crawler restricted to approved GOV.UK Design System sections.
SQLite-backed storage at
data/govuk-design-system.db.FTS5 search with deterministic ranking and snippets.
MCP tools:
search(query: string)fetch(id: string)version()
STDIO transport adapter isolated from core logic.
Related MCP server: docs-mcp
Setup
bun install
cp .env.example .envBuild the Local Dataset
bun run crawlRun MCP Server
bun run startAdd This MCP to Developer Tools
The server uses STDIO transport, so most MCP-compatible tools can run it with a command.
Use this command in your MCP client configuration:
bun run /absolute/path/to/govuk-frontend-mcp/src/index.tsIf your client supports separate command and args, use:
command:
bunargs:
["run", "/absolute/path/to/govuk-frontend-mcp/src/index.ts"]cwd:
/absolute/path/to/govuk-frontend-mcp
Example: Claude Code (MCP config)
{
"mcpServers": {
"govuk-design-system": {
"command": "bun",
"args": [
"run",
"/absolute/path/to/govuk-frontend-mcp/src/index.ts"
],
"cwd": "/absolute/path/to/govuk-frontend-mcp"
}
}
}Example: Cursor / VS Code style MCP config
∏
"mcpServers": {
"govuk-design-system": {
"type": "stdio",
"command": "bun",
"args": [
"run",
"/absolute/path/to/govuk-frontend-mcp/src/index.ts"
],
"cwd": "/absolute/path/to/govuk-frontend-mcp"
}
}
}Example: Docker command for clients that run shell commands
docker compose run --rm govuk-design-system-mcp bun run src/index.tsAfter connecting, the MCP should expose:
search(query: string)fetch(id: string)version()
Tip: run bun run crawl whenever you want to refresh the local GOV.UK data before using the MCP in your tool.
Docker Compose
docker compose up --buildTest
bun test
bun run typecheckThis 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
- AlicenseAqualityDmaintenanceProvides tools to search and retrieve Google Gemini API documentation with full-text search capabilities and automatic documentation updates stored in a local SQLite database.Last updated3101MIT
- Flicense-qualityBmaintenanceIndexes documentation sites by base URL and serves keyword search, optional semantic search, and Markdown page retrieval as MCP tools, all from a single SQLite file.Last updated
- Alicense-qualityCmaintenanceEnables substring-search of documentation entries from DevDocs.io via a single tool.Last updatedMIT
- Flicense-qualityCmaintenanceEnables lexical search over local Markdown wiki folders using SQLite FTS5, with MCP tools for querying and managing wiki indices.Last updated
Related MCP Connectors
DevDocs.io keyless docs index + entry search + content (Angular, MDN, Rust, etc.).
GOV.UK Content + Search APIs (every gov.uk page + full search)
Create, validate, edit, export (markdown/svg/png/mermaid), and search JSON Canvas files.
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/georgeherby/govuk-frontend-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server