Css Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Css Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Universal CSS Analysis and Documentation MCP Server. Analyze any CSS with 150+ metrics for complexity, specificity, and quality.
# Using uv
uv pip install css-mcp
# Using pip
pip install css-mcp# Via CLI
css-mcp
# Via Python module
python -m css_mcp.server| Variable | Default | Description |
|---|---|---|
CSS_MCP_HTTP_PORT | 3050 | Server port |
CSS_MCP_HTTP_HOST | localhost | Server host |
CSS_MCP_DEBUG | false | Enable debug mode |
| Tool | Description |
|---|---|
analyze_css | Full CSS analysis with 150+ metrics |
analyze_css_summary | Quick CSS summary (faster) |
get_docs | MDN documentation for CSS properties |
get_browser_compatibility | Check browser support for properties |
search_properties | Search for CSS properties |
get_properties_by_category | Get properties by category |
analyze_project_css | Analyze all CSS in a project |
list_capabilities | List available capabilities |
health_check | Check server health |
Use the analyzer directly in Python for any CSS:
from css_mcp.analyzer import CSSAnalyzer
# Analyze any CSS content
analyzer = CSSAnalyzer()
metrics = analyzer.analyze(css_content)
# Get complexity score
print(f"Complexity: {metrics.complexity_score}/100")
# Get optimization suggestions
suggestions = analyzer.get_suggestions()The analyzer provides 150+ metrics including:
!important usageBuilt-in compatibility data for common CSS properties across:
# Install dev dependencies
uv sync --group dev
# Run tests
pytest
# Type check
mypy css_mcp
# Lint
ruff check css_mcpBSD-3-Clause
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.