🔌 Model Context Protocol

Connect 1Labs to Claude Desktop

Use 1Labs AI tools directly in Claude Desktop, n8n, or any MCP-compatible client. Generate roadmaps, PRDs, pitch decks, and personas with natural language.

Quick Start

Step 1: Get your API key

Create an API key from your account settings.

Step 2: Configure Claude Desktop

Add this to your Claude Desktop config file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
json
{
  "mcpServers": {
    "1labs-tools": {
      "command": "npx",
      "args": ["-y", "@1labs/mcp-tools"],
      "env": {
        "ONELABS_API_KEY": "your-api-key-here"
      }
    }
  }
}

Step 3: Restart Claude Desktop

After restarting, you'll see 1Labs tools available in the tools menu.

Available Tools

roadmap_generator5 credits

Generate detailed product roadmaps with quarterly milestones, features, and progress tracking.

Parameters

productDescription(string)requiredDescription of your product
prd_generator10 credits

Create comprehensive PRDs with problem analysis, user stories, and technical specifications.

Parameters

productDescription(string)requiredWhat your product does
includeUserStories(boolean)Include user stories
includeTechSpecs(boolean)Include tech specs
pitch_deck_generator10 credits

Generate investor-ready pitch decks with problem, solution, market, and financials.

Parameters

companyName(string)requiredYour company name
description(string)requiredWhat you do
stage(string)idea, mvp, seed, series_a, growth
industry(string)Your industry
persona_generator5 credits

Create detailed user personas with demographics, goals, pain points, and behaviors.

Parameters

productDescription(string)requiredYour product
personaCount(number)1-5 personas
targetMarket(string)Target segment

Resources

1labs://credits

Check your current credit balance

1labs://generations

List your past generations

Example Prompts

Try these prompts in Claude Desktop after setting up the MCP server:

text
# Generate a product roadmap
Use the roadmap_generator tool to create a roadmap for: 
"A mobile app for async video updates for remote teams"

# Create a PRD
Use the prd_generator to create a comprehensive PRD for:
"An AI-powered code review tool that integrates with GitHub"

# Generate a pitch deck
Use the pitch_deck_generator for:
Company: "DataFlow"
Description: "Real-time data pipeline management"
Stage: "seed"

# Create user personas
Use the persona_generator to create 3 personas for:
"A meditation app for busy professionals"

n8n Integration

Use the MCP node in n8n with these settings:

  • Command: npx -y @1labs/mcp-tools
  • Environment: ONELABS_API_KEY=your-api-key

Troubleshooting

"API key not set" error

Make sure ONELABS_API_KEY is set in your config's env section.

"Insufficient credits" error

Purchase credits from the pricing page.

Server not starting

Ensure Node.js 18+ is installed. Try running npx @1labs/mcp-tools manually.