Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Mario Kart Tour API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fmario-kart-tour-api.herokuapp.com%2Fmario-kart-tour" | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fmario-kart-tour-api.herokuapp.com%2Fmario-kart-tour" | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with Mario Kart Tour API.
Read the root endpoint that describes the service and its collections
List every driver in Mario Kart Tour
Fetch a single driver by its id
List karts and gliders, or fetch one by its id
List every course in the game
GET STARTED
Fetch a single course by its id
Patterns agents use Mario Kart Tour API for, with concrete tasks.
★ Agent Game Data Lookup
A chatbot answering Mario Kart Tour questions can pull the canonical list of drivers or courses on demand rather than relying on stale memorized data. The agent calls the relevant list endpoint, reads back the collection, and answers with current names and attributes, so a question like 'which drivers are in the game' is grounded in the live reference data.
List the drivers and return their names and attributes for a user's question
Companion App Content
A companion app or agent building a stat page can assemble driver, kart, glider, and course details in one pass. It lists each collection, then fetches individual records by id for the ones a user selects, so the app shows accurate per-item detail without maintaining its own copy of the game data.
List karts and gliders, then fetch the selected items by id to show their details
Course Reference Bot
A bot that quizzes players or plans tournaments can look up the full course list and pull one course at a time. It lists courses, then fetches a chosen course by its id, so the bot works from the authoritative course set rather than a hand-maintained list.
List courses and fetch a chosen course by id to show its details
9 endpoints — the mario kart tour api serves reference data for the mario kart tour game: the drivers, karts, gliders, and courses that appear in it.
METHOD
PATH
DESCRIPTION
/api/drivers
List all drivers
/api/drivers/{driverId}
Get a driver by id
/api/karts
List all karts
/api/gliders
List all gliders
/api/courses
List all courses
/api/courses/{courseId}
Get a course by id
/api/drivers
List all drivers
/api/drivers/{driverId}
Get a driver by id
/api/karts
List all karts
/api/gliders
List all gliders
/api/courses
List all courses
/api/courses/{courseId}
Get a course by id
What agents get from Jentic-routed access to this vendor.
Setup
Wiring the Mario Kart Tour API by hand still means mapping its nine endpoints and handling the by-id versus list response shapes. Through Jentic you install once, import it from the API Directory, and your agent calls the drivers, karts, gliders, and courses operations.
Permission scoping
The API's operations are read-only lookups per item type, so a rule can allow only the collections your agent needs, such as drivers and courses, and leave the others out of scope. You decide which operations are in scope, and every call is logged.
Credential isolation
The Mario Kart Tour API needs no key or token, so there is nothing to hold. Your agent's calls still route through your own Jentic One instance, which logs each request even though no secret is involved.
Intent-based discovery
Agents search Jentic by intent such as 'list Mario Kart Tour courses' or 'get a driver by id', and Jentic returns the matching operation with its response schema so the agent calls the right endpoint without reading the reference docs.
Alternatives and complements available in the Jentic catalogue.
Specific to using Mario Kart Tour API through Jentic.
What authentication does the Mario Kart Tour API use?
The Mario Kart Tour API needs no authentication: its OpenAPI spec defines no security schemes, so the read-only game data endpoints are open. Through Jentic the calls still route through your own self-hosted instance, where each request is logged even though no key is involved.
Can I list drivers and fetch one by its id with the Mario Kart Tour API?
Yes. Call the drivers list endpoint to get every driver, then call the by-id endpoint with a driver id to get a single record. The same list-then-fetch pattern works for karts, gliders, and courses.
What are the rate limits for the Mario Kart Tour API?
The OpenAPI spec for the Mario Kart Tour API does not define rate limits. Because the service is a community-hosted app, keep request volume modest and cache results where you can.
Is there a Mario Kart Tour API MCP server?
You don't need an MCP server to give your agent the Mario Kart Tour API. Jentic connects it directly from the API Directory: import it and your agent calls the drivers, karts, gliders, and courses operations without another server's tool definitions loaded into its context.
Can I limit which Mario Kart Tour operations my agent can call?
Yes. Even though the endpoints are open, a rule can allow only the operations you want, such as listing drivers and courses, and leave the rest out of scope. You decide which operations are in scope, and every call the agent makes is logged.
How do I list Mario Kart Tour drivers through Jentic?
Search Jentic with an intent like 'list Mario Kart Tour drivers', and it returns the drivers list operation with its response schema so the agent calls it and reads back the collection. To run it on your own infrastructure, install Jentic One from its GitHub repo.
Know of an official OpenAPI document? Contribute it →
For Agents
Look up Mario Kart Tour reference data: list drivers, karts, gliders, and courses, or fetch a single one by its id.
Use for: List all Mario Kart Tour drivers, Get the details of a specific driver, Show me the available karts, Look up a glider by its id
Not supported: Serves read-only reference data for Mario Kart Tour only. Does not track player accounts, matches, or scores, and cannot change anything in the game.
The Mario Kart Tour API serves reference data for the Mario Kart Tour game: the drivers, karts, gliders, and courses that appear in it. A root endpoint describes the service, list endpoints return each collection, and a by-id endpoint returns a single driver, kart, glider, or course. Responses are read-only game data, so the API is a lookup source rather than a way to change anything in the game.