For AI agents & developers
The MyTinyRider MCP
MyTinyRider runs a public Model Context Protocol server. Point any MCP-capable AI agent at it and ask ride-on and diecast questions in plain language — it searches our entire knowledge base and returns the most relevant reviews, PlayScore™rankings, head-to-head comparisons, how-to guides, and community Q&A, each with source links back to the page.
The endpoint
Streamable HTTP. Public, no authentication. Rate limited to 120 requests per minute.
https://ae7d2747-0916-4547-b662-75465579fd32.search.ai.cloudflare.com/mcpWhat it can answer
The server indexes the whole site — 86 products across 11 categories, 294 head-to-head comparisons, 54 ranked best-of lists, plus how-to guides, news and community intel — and stays in sync automatically as the site updates. Every answer is grounded in the published PlayScore™ methodology.
Connect your client
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"mytinyrider": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://ae7d2747-0916-4547-b662-75465579fd32.search.ai.cloudflare.com/mcp"]
}
}
}Cursor
Add to ~/.cursor/mcp.json (Cursor supports remote URLs directly):
{
"mcpServers": {
"mytinyrider": {
"url": "https://ae7d2747-0916-4547-b662-75465579fd32.search.ai.cloudflare.com/mcp"
}
}
}Any remote-MCP client / Cloudflare AI Playground
Paste the endpoint URL into any client that supports remote MCP over streamable HTTP (for a no-install test, use the Cloudflare AI Playground and add the URL under MCP Servers).
The tool
The server exposes one tool, search, which takes a natural-language query and returns ranked, source-linked content. Example prompts once connected:
- “What’s the best 12V ride-on for a 3-year-old under $200?”
- “Compare the Power Wheels Dune Racer and the Peg Perego Polaris RZR.”
- “Which 1:64 Hot Wheels casting holds its value best, and why?”
- “What do collectors actually say about the M2 Machines Auto-Thentics line?”
Good to know
- Free and open. No key, no sign-up. The machine-readable server card lives at
/.well-known/mcp/server-card.json. - It retrieves; you decide. The server surfaces ranked options and evidence — it never buys anything or makes the call for you. Purchase decisions stay yours.
- Always current. The index re-syncs from our sitemap, so answers reflect the live site.
- Open source. Reference implementation, companion skill, and connect docs: github.com/automationsquadhq/mytinyrider-mcp.