Quick Start

If you're building with an AI coding agent, install the MCP and let it do the rest.

1

Install the MCP

One command to register Simple Product with Claude Code, Cursor, or Windsurf.

npx @simple-product/mcp --install
2

Ask your agent to set it up

Your agent now has tools to read your workspace and get framework-specific setup guides. Just say what you want.

> set up Simple Product analytics in my Next.js app
> add a feedback widget to my React app
> show our top feature requests from this week
Not using a coding agent? Install manually.Show

Get an API key from Settings → API Keys in your workspace, then use the SDK or REST API directly.

# Install the SDK
npm install @simple-product/sdk
 
# Or call the API directly
curl -X POST https://simpleproduct.dev/api/v1/feedback \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"title": "Feedback", "content": "Great product!"}'