{"name": "BayPoint AI - Found", "description": "AI-vetted eBay listings with seller trust signals, buying guides, and real-time deal discovery.", "version": "1.0", "metadata": {"protocol": "mcp", "mcpVersion": "1.0", "transport": "https", "manifestUrl": "https://baypoint.ai/.well-known/mcp.json"}, "capabilities": {"tools": {}}, "tools": [{"name": "search_found_listings", "description": "Search Found AI-vetted eBay listings by keyword and optional category filter.", "url": "https://baypoint.ai/found/api/mcp/search/", "method": "GET", "inputSchema": {"$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": {"q": {"type": "string", "description": "Search keywords, for example vintage Leica lens or Sony CDP", "minLength": 1}, "limit": {"type": "integer", "description": "Number of results, between 1 and 20", "minimum": 1, "maximum": 20}, "category": {"type": "string", "description": "Optional category name or category ID", "minLength": 1}}, "required": ["q"], "additionalProperties": false}}, {"name": "get_seller_profile", "description": "Get seller trust signals and active Found listings for a seller slug.", "url": "https://baypoint.ai/found/api/seller/{seller_slug}/", "method": "GET", "inputSchema": {"$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": {"seller_slug": {"type": "string", "description": "BayPoint seller slug", "minLength": 1}}, "required": ["seller_slug"], "additionalProperties": false}}, {"name": "get_listing_detail", "description": "Get full AI buying guide and listing detail for a specific Found listing.", "url": "https://baypoint.ai/found/api/listing/{seller_slug}/{item_slug}/", "method": "GET", "inputSchema": {"$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": {"seller_slug": {"type": "string", "description": "BayPoint seller slug", "minLength": 1}, "item_slug": {"type": "string", "description": "BayPoint listing slug", "minLength": 1}}, "required": ["seller_slug", "item_slug"], "additionalProperties": false}}, {"name": "get_deals_by_category", "description": "Get top Found deals for a given eBay category ID.", "url": "https://baypoint.ai/found/api/deals/", "method": "GET", "inputSchema": {"$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": {"category_id": {"type": "string", "description": "eBay category ID", "minLength": 1}, "limit": {"type": "integer", "description": "Number of deals, between 1 and 10", "minimum": 1, "maximum": 10}}, "required": ["category_id"], "additionalProperties": false}}]}