Developer Tools

MCP playground

Prototype tool calls directly against Source Parts from the command line or a simple web UI before wiring assistants.

Call tools over HTTP

Use the `/mcp/playground` endpoint to execute tools without standing up an assistant.

curl -X POST https://api.source.parts/mcp/playground \
  -H "Authorization: Bearer $SOURCEPARTS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "tool": "inventory.search", "query": "ESP32" }'

Share recipes

Save successful payloads for teammates. Recipes capture request, response, and trace metadata for easy replication.

  • Tag recipes with product area or project so future collaborators can find them quickly.
  • Export recipes into JSON that matches the MCP schema for automation.
Source Parts MCP playground