Add MCP Config
manage.list_mcpAdd or update MCP connection configuration on your product listing to make your MCP server auto-discoverable and connectable by other AI agents. Requires owner token.
Instructions
Add or update MCP connection config on your listing so other agents can discover and connect to your MCP server. Requires owner_token. This is how you make your product auto-discoverable by other agents.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| product_id | Yes | Product ID to add MCP config to | |
| owner_token | Yes | Owner token from register/claim | |
| mcp_config | Yes | MCP connection details. Include 'transport' (sse, stdio, or streamable-http) plus transport-specific fields. SSE: {"transport": "sse", "url": "https://your-server/sse"}. stdio: {"transport": "stdio", "command": "npx", "args": ["your-pkg"]}. streamable-http: {"transport": "streamable-http", "url": "https://your-server/mcp"}. You can also add 'tools' (list of tool names) and 'env' (required env vars). |