
Company News
Socket Joins New OpenJS Program to Fund Node.js Security Work
Socket is joining the OpenJS Security Stewardship Program to fund Node.js vulnerability research, maintainer remediation, and security releases.
pixasso-mcp
Advanced tools
Model Context Protocol server for Pixasso: the end-to-end frontend engineering and design orchestrator.
Model Context Protocol (MCP) server for Pixasso: the complete end-to-end frontend engineering and design orchestrator for AI agents and developers.
Pixasso bridges visionary art direction with robust frontend architecture across 16 foundational engineering pillars. It gives LLMs, coding assistants, and autonomous agents the ability to dynamically discover user intent, validate design tokens, compile Graphify-style architecture decision graphs, critique layouts against AI tropes, search 31 reference catalogs, and generate automated multi-viewport testing matrices.
Live Showcase & Specifications: https://pixasso.erebuzzz.tech or https://pixasso-two.vercel.app
flowchart TD
User["Developer / AI Agent Prompt"] --> Client["MCP Client (Claude / Cursor / Antigravity)"]
Client --> Server["pixasso-mcp Stdio Server"]
subgraph Tools ["Exposed Tools (JSON-RPC)"]
T1["pixasso_discover_intent"]
T2["pixasso_search_references"]
T3["pixasso_fetch_reference"]
T4["pixasso_generate_genome"]
T5["pixasso_generate_brain"]
T6["pixasso_audit_design"]
T7["pixasso_generate_test_plan"]
end
Server --> Tools
T1 --> P1["Deterministic Inquiry Picker<br/>(16 Architecture Pillars & Brand Gate)"]
T2 --> P2["31 Deep Reference Catalogs<br/>(Typography, Shaders, Layouts)"]
T3 --> P3["Live DOM & Content Extraction<br/>(Linkedom, Readability, SPA Detection)"]
T4 --> P4["Design Genome Specification<br/>(YAML Tokens, Verified References)"]
T5 --> P5["Design Brain DAG<br/>(Mermaid Decision Graph)"]
T6 --> P6["Objective Critique Engine<br/>(5-Pillar Scorecard)"]
T7 --> P7["Automated Interface QA<br/>(390px, 768px, 1024px, 1440px)"]
Pixasso MCP ships with dual transport architectures side by side:
Connect any remote-compatible MCP client directly to:
https://mcp.pixasso.erebuzzz.tech/mcp
Connecting will open a GitHub OAuth prompt (read:user, user:email) to authorize your session. Each authenticated GitHub account receives a daily allowance of 500 tool calls.
Run instantly without local installation:
npx -y pixasso-mcp
Or install globally:
npm install -g pixasso-mcp
Add to your claude_desktop_config.json:
{
"mcpServers": {
"pixasso-local": {
"command": "npx",
"args": ["-y", "pixasso-mcp"]
},
"pixasso-remote": {
"url": "https://mcp.pixasso.erebuzzz.tech/mcp"
}
}
}
Add to your Cursor MCP settings (~/.cursor/mcp.json):
{
"mcpServers": {
"pixasso-local": {
"command": "npx",
"args": ["-y", "pixasso-mcp"]
},
"pixasso-remote": {
"url": "https://mcp.pixasso.erebuzzz.tech/mcp"
}
}
}
Register local or remote:
# Local stdio
claude mcp add pixasso npx -y pixasso-mcp
# Remote HTTP
claude mcp add pixasso-remote --transport http https://mcp.pixasso.erebuzzz.tech/mcp
Add to ~/.gemini/antigravity/mcp_config.json:
{
"mcpServers": {
"pixasso": {
"command": "npx",
"args": ["-y", "pixasso-mcp"]
},
"pixasso-remote": {
"url": "https://mcp.pixasso.erebuzzz.tech/mcp"
}
}
}
| Tool | Purpose | Key Inputs |
|---|---|---|
pixasso_discover_intent | Deterministic template-question picker across 16 pillars and brand genesis. Generates targeted interactive popup questions for host ask_question. | projectArchetype, description, hasBrandIdentity, referenceUrls |
pixasso_search_references | Search across 31 curated design & architecture catalogs. | query, category, tag |
pixasso_fetch_reference | Fetches live HTML, extracts title/headings/readable text, detects client SPAs, and caches verified fetches. | url, focus |
pixasso_generate_genome | Compiles tokens, color ramps, typography, and libraries into design-genome.yaml. Enforces programmatic hard gate on verified references. | archetype, palette, typography, references |
pixasso_generate_brain | Synthesizes a visual Graphify Mermaid decision graph and Task DAG. | decisions, components |
pixasso_audit_design | Evaluates markup and styling against AI design anti-patterns. | codeSnippet, context |
pixasso_generate_test_plan | Produces multi-viewport QA plans (390px, 768px, 1024px, 1440px). | targetUrls, checkSensory |
pixasso_discover_intent (Deterministic Question Picker): This tool is purposefully deterministic. It evaluates the project archetype, brand status, and whether reference URLs were supplied, outputting structured popup questions without relying on non-deterministic LLM prompting within the tool. The returned compulsoryPopupQuestions are intended to be presented directly to the user via the host agent interactive modal (ask_question).pixasso_fetch_reference (Real Content Deconstruction): Autonomous models often hallucinate visual traits from domain names alone. pixasso_fetch_reference inspects live pages, extracting DOM headings, metadata, visible links, and readable text via Mozilla Readability. If the page is an empty client SPA shell (under 200 characters of text), it flags renderedContentDetected: false so agents do not fabricate visual descriptions.pixasso_generate_genome: Any reference URL supplied to pixasso_generate_genome must first be verified through pixasso_fetch_reference in the active session. If an unfetched URL is passed, the tool rejects the call with an informative error. Furthermore, unrendered SPA shells cannot claim epistemicStatus: 'known' without screenshot verification.sequenceDiagram
autonumber
participant Agent as Autonomous Agent
participant MCP as pixasso-mcp
participant Engine as Design Engine
Agent->>MCP: pixasso_discover_intent(projectType)
MCP-->>Agent: 16-Pillar Clarification Matrix & Brand Gate
Agent->>Agent: Interactive User Alignment (ask_question)
Agent->>MCP: pixasso_generate_genome(alignedSpecs)
MCP-->>Agent: Validated design-genome.yaml
Agent->>MCP: pixasso_generate_brain(decisions)
MCP-->>Agent: Mermaid Decision Map & Component DAG
Agent->>Engine: Component Fabrication (Semantic HTML5 / CSS / React)
Agent->>MCP: pixasso_audit_design(componentMarkup)
MCP-->>Agent: 5-Pillar Scorecard & Anti-Pattern Check
Agent->>MCP: pixasso_generate_test_plan(viewports)
MCP-->>Agent: Multi-Viewport Overflow Matrix (390px to 1440px)
Pixasso orchestrates 16 distinct engineering disciplines:
pixasso://)pixasso://references/{catalogName}: Direct read access to all 31 reference catalogs including typography systems, motion choreography, sound design, and shader parameters.pixasso://templates/{templateName}: Access to production blueprints including design-genome.yaml, interface-test-plan.md, and code-review.md.mcp://prompts/)intent-discovery: Prompt for launching adaptive user interviews without form fatigue.frontend-architecture: Scaffold complete 16-pillar architecture blueprints.design-critique: Run rigorous design audits to identify and eliminate AI visual tropes.typography-direction: Formulate harmonious display, serif, and monospace pairings.interface-qa: Execute multi-device viewport tests and sensory verification.MIT (c) Erebuzzz
FAQs
Model Context Protocol server for Pixasso: the end-to-end frontend engineering and design orchestrator.
The npm package pixasso-mcp receives a total of 721 weekly downloads. As such, pixasso-mcp popularity was classified as not popular.
We found that pixasso-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Company News
Socket is joining the OpenJS Security Stewardship Program to fund Node.js vulnerability research, maintainer remediation, and security releases.

Security News
Two compromised GitHub Actions were re-enabled with malicious tags intact, exposing thousands of downstream repositories to Mini Shai-Hulud.

Research
/Security News
A malicious Firefox extension fetches its payload after installation to evade detection, steal Google session cookies, and automate account takeover.