symbols-mcp-server
Convert Angular components to Symbols/DOMQL v3 using the convert_to_symbols tool.
Integrate with Windsurf (Codeium's IDE) as an MCP platform.
Convert React components to Symbols/DOMQL v3 using the convert_to_symbols tool.
Optional integration for vector-based documentation search using Supabase database.
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., "@symbols-mcp-servercreate a navigation bar component with a logo and links"
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.
Symbols MCP Server
An MCP (Model Context Protocol) server that exposes the Symbols/DOMQL v3 AI assistant capabilities to any MCP-compatible platform — Cursor, Claude Code, Windsurf, and more.
Features
Tools
Tool | Description |
| Generate a Symbols/DOMQL v3 component from natural language |
| Generate a full page with routing support |
| Scaffold a complete multi-file Symbols project |
| Convert React/Angular/Vue/HTML to Symbols/DOMQL v3 |
| Search Symbols documentation (vector or local) |
| Explain any Symbols concept with examples |
| Review code for v3 compliance and best practices |
| Generate design system files (colors, spacing, themes, icons) |
Resources
Resource URI | Description |
| Complete DOMQL v3 syntax reference |
| Project folder structure conventions |
| Modern UI/UX design direction |
| React/Angular/Vue → Symbols migration |
| DOMQL v2 → v3 changes |
| CLI setup and quickstart |
| Spacing token reference table |
| Built-in primitive components |
| Event handler reference |
Prompts
Prompt | Description |
| Template for component generation |
| Template for framework migration |
| Template for project scaffolding |
| Template for code review |
Related MCP server: MCP Tools
Installation
Quick Start (No API Keys Required!)
Clone the repository:
git clone https://github.com/baronsilver/symbols-mcp-server.git
cd symbols-mcp-serverInstall dependencies:
pip install uv
uv sync
npm i @symbo.ls/cli -g
smbls create your-projectIMPORTANT: For now, delete the docs folder inside your project folder after creation
Configure:
cp .env.example .env
# Edit .env and add both:
# - SYMBOLS_MCP_URL (contact maintainer for public server URL)
# - LLM_MODEL=google/gemini-3-flash-previewPlatform Integration
Claude Code
claude mcp add symbols-mcp -- uv run --directory C:\repos\symbols-mcp-server symbols-mcpOr manually edit ~/UserName/.claude.json:
{
"mcpServers": {
"symbols-mcp": {
"command": "python",
"args": [
"-m",
"uv",
"run",
"--directory",
"C:\\repos\\symbols-mcp-server",
"symbols-mcp"
]
}
}
}Cursor
Add to your Cursor MCP settings (.cursor/mcp.json in your project or global settings):
{
"mcpServers": {
"symbols-mcp": {
"command": "python",
"args": [
"-m",
"uv",
"run",
"--directory",
"C:\\repos\\symbols-mcp-server",
"symbols-mcp"
]
}
}
}Windsurf
Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"symbols-mcp": {
"command": "python",
"args": [
"-m",
"uv",
"run",
"--directory",
"C:\\repos\\symbols-mcp-server",
"symbols-mcp"
]
}
}
}Development
Restart your platforms after updating the MCP settings. Once loaded, it should automatically run the MCP. Ask your AI to do the quick test with the MCP to see if it works properly.
Environment Variables
Variable | Required | Default | Description |
| Yes | — | API key for OpenRouter (powers AI generation) |
| No | — | Supabase project URL for vector search |
| No | — | Supabase service role key |
| No |
| AI model to use via OpenRouter |
| No |
| Path to skills markdown files |
Architecture
symbols-mcp-server/
├── pyproject.toml # Project config and dependencies
├── .env.example # Environment variable template
├── README.md # This file
└── symbols_mcp/
├── __init__.py
├── server.py # MCP server with tools, resources, prompts
└── skills/ # Bundled Symbols knowledge base
├── CLAUDE.md # DOMQL v3 complete reference
├── SYMBOLS_LOCAL_INSTRUCTIONS.md # Project structure rules
├── DESIGN_DIRECTION.md # UI/UX design direction
├── MIGRATE_TO_SYMBOLS.md # Framework migration guide
├── DOMQL_v2-v3_MIGRATION.md # v2→v3 changes
└── QUICKSTART.md # CLI quickstartThe server reads skills files at startup and uses them as context for all AI-powered tools.
When Supabase is configured, the search_symbols_docs tool also queries the vector database
for additional documentation matches.
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/baronsilver/symbols-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server