Metadata-Version: 2.4
Name: govuk-design-system-mcp
Version: 0.1.1
Summary: MCP server exposing GOV.UK Design System documentation to AI agents
License-Expression: MIT
License-File: LICENSE
Requires-Python: >=3.10
Requires-Dist: httpx<1.0.0,>=0.27.0
Requires-Dist: mcp<2.0.0,>=1.0.0
Description-Content-Type: text/markdown

# GOV.UK Design System MCP

An MCP server that exposes GOV.UK Design System documentation to AI agents.

## Usage

### Claude Desktop

Add to `claude_desktop_config.json`:

```json
{
  "mcpServers": {
    "govuk-design-system": {
      "command": "uvx",
      "args": ["govuk-design-system-mcp"]
    }
  }
}
```

### VS Code

Add to `.vscode/mcp.json`:

```json
{
  "servers": {
    "govuk-design-system": {
      "command": "uvx",
      "args": ["govuk-design-system-mcp"]
    }
  }
}
```

## Tools

| Tool | Description |
|------|-------------|
| `list_components()` | List all GOV.UK components |
| `list_patterns()` | List all design patterns |
| `list_styles()` | List all style guides |
| `get_component_guidance(name)` | Get component documentation |
| `get_pattern(name)` | Get pattern documentation |
| `get_style(name)` | Get style documentation |

## License

MIT
