specmcp.ai
The SpecMCP site at specmcp.ai presents SpecMCP as “the coordination layer for multi-agent development”. It is a single-page static HTML site with no build step and no JavaScript framework.
| Technology | Role |
|---|---|
| HTML5 | Page structure |
| CSS3 (custom properties) | Styling |
| Google Fonts | Typography (DM Sans, JetBrains Mono) |
| nginx | Static file serving |
Content
Section titled “Content”A single index.html with a dark-themed design featuring grain texture overlays and ambient glow effects.
specmcp-ai/├── public/│ └── index.html├── Dockerfile├── nginx.conf├── docker-compose.yml└── package.jsonStyling
Section titled “Styling”All styling is inline within index.html using CSS custom properties:
| Variable | Value | Usage |
|---|---|---|
--bg | Dark background | Page background |
--surface | Surface colour | Card and section backgrounds |
--accent | Green | Primary accent |
--orange | Orange | Secondary accent |
The design uses DM Sans for body text and JetBrains Mono for code and technical terminology, with CSS-based grain overlays and ambient glow effects for visual depth.
Build and Serve
Section titled “Build and Serve”Single-stage Dockerfile:
- nginx 1.28.2 Alpine copies
public/directly into the web root sedreplaces{{COMMIT_SHA}}inindex.htmlat Docker build time- Runs as non-root on port 8080