Claude Desktop is the canonical MCP client. With the Podium MCP server connected, you can search products, manage taste profiles, execute purchases, check loyalty balances, and browse task bounties — all through natural conversation.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
- Claude Desktop installed
- A Podium API key
- The Podium MCP server built and compiled (see Build a Claude MCP Server)
Configuration
Edit your Claude Desktop config file:- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
Verify the Connection
Ask Claude:“What Podium tools do you have access to?”Claude should list the available tools:
search_products, get_product, get_profile, update_profile, get_recommendations, check_points, create_checkout, and list_tasks.
Example Conversations
Product Discovery
“Find me the top-rated moisturizers under $30”Claude calls
search_products, formats the results, and presents options with prices and descriptions.
Profile Management
“Update my skin profile — I have dry skin, I’m concerned about fine lines and dark spots, and I prefer fragrance-free products under $40”Claude calls
update_profile with the structured preferences, then calls get_recommendations to suggest matching products.
Purchase Flow
“Buy the CeraVe Moisturizing Cream, ship it to 123 Main St, San Francisco CA 94102”Claude calls
get_product to confirm details, then create_checkout with the shipping address. Returns the checkout session ID and total.
Loyalty Check
“How many points do I have? What’s my lifetime earning total?”Claude calls
check_points and presents the balance, lifetime earned, and lifetime spent.
Task Browsing
“Show me available bounties I could work on”Claude calls
list_tasks and formats open tasks with their reward amounts and requirements.
Adding More Tools
The MCP server from the recipe ships with 8 tools, but you can extend it with any SDK method. The pattern is always the same:npx tsc, restart Claude Desktop, and the new tool appears automatically.
Troubleshooting
| Issue | Fix |
|---|---|
| Server not appearing | Check that the path in config is absolute and the JS file exists |
| ”Connection refused” | Ensure npx tsc compiled without errors |
| API errors in tool calls | Verify your PODIUM_API_KEY is valid and not expired |
| Tools show but fail | Check that the API key has permissions for the endpoint being called |
Related
- Build a Claude MCP Server — the full server implementation
- Cursor Setup — same MCP server, different client
- SDK Setup — client configuration reference

