Set up Cursor to build on Podium with full MCP tool access and project-level context rules. This gives Cursor’s agent the ability to search products, manage profiles, execute checkouts, and more — all from within your IDE.Documentation Index
Fetch the complete documentation index at: https://podium.build/docs/llms.txt
Use this file to discover all available pages before exploring further.
Prerequisites
- Cursor installed
- A Podium API key
- The Podium MCP server built (see Build a Claude MCP Server)
MCP Server Configuration
Cursor supports MCP servers natively. Add the Podium server to your project’s.cursor/mcp.json:
Available Tools
Once connected, Cursor’s agent can call these tools in conversation:| Tool | What It Does |
|---|---|
search_products | Search the product catalog with filters |
get_product | Fetch full product details by ID |
get_profile | Read a user’s companion/taste profile |
update_profile | Update preferences, brands, concerns |
get_recommendations | Get personalized product recommendations |
check_points | Check a user’s points balance |
create_checkout | Create a checkout session with shipping |
list_tasks | Browse available task bounties |
Project Rules
Create.cursor/rules/podium.mdc to give Cursor persistent context about Podium’s SDK and API patterns:
Example Workflow
With MCP connected and rules in place, you can ask Cursor:“Search for skincare products under $25 and build a React component that displays them as cards with an add-to-cart button that creates a checkout session”Cursor will:
- Call
search_productsto get real product data - Use the SDK patterns from the rules to write correct code
- Generate a component using
createPodiumClientand the right SDK methods
Tips
- Use Agent mode (Cmd+I → Agent) for multi-step tasks that involve both tool calls and code generation
- Reference the MCP server recipe if you need to add more tools — the pattern is consistent
- Keep rules up to date as the SDK evolves — add new namespaces or patterns as needed

