user-majico-mcp
OfficialClick 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., "@user-majico-mcpget the design tokens"
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.
user-majico MCP server
MCP server for Majico.xyz: read (and limited write) tools so coding agents can pull brand guidelines, design tokens, studio canvas, and export manifests.
Requirements: Majico account with tokens. Cursor humans connect via OAuth (no API key in mcp.json). API keys are for automation/stdio only.
Install
npx -y user-majico-mcp@0.4.1Related MCP server: figma-mcp-write-server
Environment variables (v0.2+)
Set once in MCP config — tools do not require projectId / apiKey on every call:
Variable | Description |
| API base (default |
| Project UUID |
| Project API key |
Per-call overrides in tool arguments still work.
Tools
Tool | Description |
| Archetypes, niche intent |
| Palette and fonts |
| Selected logo SVG |
| Markdown + LLM prompt |
| DESIGN.md markdown |
| Studio canvas snapshot |
| Export file list |
| Full BRAND.md / DESIGN.md / tokens ZIP (base64 in MCP response) |
| Submit product brief + enqueue niche research |
| Patch one |
| Enqueue harness jobs ( |
| Poll harness job status |
Cursor agent example: generate_asset for investor pack
After brand chain, palette, GTM, team, and traction are ready:
{
"tool": "generate_asset",
"arguments": {
"skillId": "investor-pack",
"params": {
"team": {
"members": [
{ "name": "Alex Kim", "role": "CEO", "bio": "ex-Stripe PM" }
]
},
"traction": {
"metrics": [{ "label": "Waitlist", "value": "1,200" }]
},
"includeSlides": ["financials"]
}
}
}Poll with get_asset_status({ jobId }). Preflight failures return HTTP 422 with code: "investor_pack_preflight_blocked" and a blocked reason (brand, gtm, team, traction, …).
Phase 2: one-pager and data room (after deck exists on canvas)
{
"tool": "generate_asset",
"arguments": {
"skillId": "investor-one-pager"
}
}{
"tool": "generate_asset",
"arguments": {
"skillId": "investor-data-room"
}
}Both require a harness-investor-pack element on the Studio canvas (generate investor-pack first). Without a deck, jobs return a stub with canvasUrl pointing to finish the deck.
Cursor .cursor/mcp.json (OAuth — preferred)
{
"mcpServers": {
"majico": {
"url": "https://api.majico.xyz/mcp"
}
}
}Complete Connect in Cursor Settings → MCP. Use list_projects and pass projectId on tool calls to switch scope.
Cursor .cursor/mcp.json (stdio — automation / local)
{
"mcpServers": {
"majico": {
"command": "npx",
"args": ["-y", "user-majico-mcp@0.4.1"],
"env": {
"MAJICO_API_URL": "https://api.majico.xyz",
"MAJICO_PROJECT_ID": "<uuid>",
"MAJICO_API_KEY": "<key>"
}
}
}
}HTTP MCP (hosted)
OAuth (Cursor humans): https://api.majico.xyz/mcp — Connect in Cursor; no headers in mcp.json.
API key (automation only):
Authorization: Bearer <project_api_key>
X-Majico-Project-Id: <uuid>Development
cd packages/user-majico-mcp
npm install
npm run build
npm testLicense
MIT
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/majico-xyz/user-majico-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server