Normatia
Open-source developer toolkit for Spanish building code compliance.
Main site: normatia.com API docs: docs.normatia.com API base: api.normatia.com
What is Normatia?
Normatia is a building code compliance platform for Spain's AECO sector (architecture, engineering, construction, and operations).
MCP Server
Normatia provides a remote MCP server that gives AI assistants access to Spanish building code data, location intelligence, compliance verification, and regulatory Q&A, no installation required.
https://mcp.normatia.com/mcp
Available Tools
| Tool | Description |
|---|---|
search_locations | Search Spanish geographic locations (municipalities, provinces, autonomous communities) |
search_codes | Search building codes and regulations by topic, scope, or tag |
verify_compliance | Verify if a technical value complies with regulations for a location |
ask | Ask natural-language questions about Spanish building regulations |
Setup
Claude
Connect Normatia to claude.ai as a custom connector. Available on Free (limited to 1 connector), Pro, Max, Team, and Enterprise plans. Currently in beta.
Free, Pro and Max plans:
- Navigate to Customize > Connectors
- Click "+" then "Add custom connector"
- Enter the server URL:
https://mcp.normatia.com/mcp - Select
OAuthas authentication - Click "Add"
Team and Enterprise plans (owner):
- Navigate to Organization settings > Connectors
- Click "Add" → hover "Custom" → select "Web"
- Enter the server URL:
https://mcp.normatia.com/mcp - Select
OAuthas authentication - Click "Add"
Once added by the owner, members connect from Customize > Connectors.
After configuration, enable Normatia per conversation via the "+" button in the lower left → "Connectors".
ChatGPT
Connect Normatia to ChatGPT as a custom MCP app. Available on Free, Plus, Pro, Business, and Enterprise/Edu plans. Currently in beta.
- Enable developer mode: go to Settings → Apps → Advanced Settings and toggle Developer mode
- Go to Settings → Apps → Create
- Enter the server URL:
https://mcp.normatia.com/mcp - Select
OAuthas authentication - Click Create
Once created, enable the app in any conversation via the "+" button and select Normatia.
For Business and Enterprise/Edu plans, workspace admins must configure and publish the app from Workspace Settings → Apps before members can use it.
Prerequisites
The following clients require an API key. Get one at normatia.com/es/api. Keys use the format sk-normatia-....
Claude Desktop
Add to your config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS, %APPDATA%\Claude\claude_desktop_config.json on Windows):
{
"mcpServers": {
"normatia": {
"type": "streamable-http",
"url": "https://mcp.normatia.com/mcp",
"headers": {
"Authorization": "Bearer sk-normatia-..."
}
}
}
}
Claude Code
claude mcp add normatia --transport streamable-http https://mcp.normatia.com/mcp \
-h "Authorization: Bearer sk-normatia-..."
VS Code / GitHub Copilot
Add to .vscode/mcp.json in your workspace:
{
"servers": {
"normatia": {
"type": "streamable-http",
"url": "https://mcp.normatia.com/mcp",
"headers": {
"Authorization": "Bearer sk-normatia-..."
}
}
}
}
Or add to your User Settings (JSON) for global access:
{
"mcp": {
"servers": {
"normatia": {
"type": "streamable-http",
"url": "https://mcp.normatia.com/mcp",
"headers": {
"Authorization": "Bearer sk-normatia-..."
}
}
}
}
}
Cursor
Add to Cursor MCP settings (~/.cursor/mcp.json):
{
"mcpServers": {
"normatia": {
"type": "streamable-http",
"url": "https://mcp.normatia.com/mcp",
"headers": {
"Authorization": "Bearer sk-normatia-..."
}
}
}
}
Windsurf
Add to Windsurf MCP settings:
{
"mcpServers": {
"normatia": {
"type": "streamable-http",
"url": "https://mcp.normatia.com/mcp",
"headers": {
"Authorization": "Bearer sk-normatia-..."
}
}
}
}
Zed
Add to Zed settings (~/.config/zed/settings.json):
{
"context_servers": {
"normatia": {
"transport": "streamable-http",
"url": "https://mcp.normatia.com/mcp",
"headers": {
"Authorization": "Bearer sk-normatia-..."
}
}
}
}
Any MCP Client
Use these connection details with any MCP-compatible client:
| Setting | Value |
|---|---|
| Transport | streamable-http |
| URL | https://mcp.normatia.com/mcp |
| Auth header | Authorization: Bearer sk-normatia-... |
For full setup instructions for 30+ MCP clients, see docs.normatia.com/mcp.
Example Prompts
Once connected, try these prompts in your AI assistant:
- "Search for municipalities named Sevilla"
- "What climate zone is Madrid in?"
- "What are the fire resistance requirements for residential structures?"
- "Verify if a wall with U-value 0.35 W/m²K is compliant in Sevilla"
- "Show me the latest version of the CTE DB-HE"
Server Config
{
"mcpServers": {
"normatia": {
"type": "streamable-http",
"url": "https://mcp.normatia.com/mcp",
"headers": {
"Authorization": "Bearer sk-normatia-..."
}
}
}
}