Design and prototyping platform.
## Marvel MCP Server: Rapid Prototyping Platform The **Marvel MCP Server** integrates the streamlined prototyping platform directly into Google Antigravity, enabling AI assistants to create interactive prototypes, collect user feedback, and manage design projects programmatically. This integration brings rapid prototyping capabilities to your development workflow. ### Why Marvel MCP? - **Simple Prototyping**: Create interactive prototypes quickly without complex tools - **User Testing**: Built-in user testing with screen recording and feedback collection - **Handoff Features**: Automatic specification and asset extraction for developers - **Design Integration**: Import from Sketch, Figma, and Photoshop for prototyping - **Team Collaboration**: Manage projects, feedback, and approvals across teams ### Key Features #### 1. Prototype Creation ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Create a new mobile prototype project and upload these screen designs" }], tools=[{ "name": "marvel_prototype", "description": "Create prototypes" }] ) ``` #### 2. Hotspot Management ```python # Configure interactive areas response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Add navigation hotspots connecting the home screen to all detail screens" }], tools=[{"name": "marvel_hotspots", "description": "Manage hotspots"}] ) ``` #### 3. User Testing ```python # Manage user tests response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Create a user test for the checkout flow and get the participant link" }], tools=[{"name": "marvel_testing", "description": "User testing tools"}] ) ``` #### 4. Feedback Collection ```python # Manage feedback response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Get all feedback comments from the latest user test sessions" }], tools=[{"name": "marvel_feedback", "description": "Collect feedback"}] ) ``` ### Configuration ```json { "mcpServers": { "marvel": { "command": "npx", "args": ["-y", "@anthropic/mcp-marvel"], "env": { "MARVEL_ACCESS_TOKEN": "your-marvel-access-token" } } } } ``` ### Use Cases **Quick Prototyping**: Rapidly create interactive prototypes for concept validation. **User Research**: Conduct user tests and collect feedback on design concepts. **Stakeholder Reviews**: Share prototypes and gather approval from stakeholders. **Developer Handoff**: Extract specifications and assets for implementation. The Marvel MCP Server brings streamlined prototyping directly into your development workflow, enabling rapid design validation and feedback collection.
{
"mcpServers": {
"marvel": {}
}
}