Back to tracker
Plugin tracker
Tools
Explore what tracked Claude Connectors and ChatGPT Plugins can actually do. Search by tool, Plugin, Brand, category, verb, or access requirement.
Latest snapshot2026-09-13USmethodology registry-public-v1
Searchable tools
119,491
Authless tools
7,773
Auth required
107,252
Described tools
64,388
119,491 tools
- Get MyGeotab usage guidancegetskill · Start here for any MyGeotab task: get authoritative guidance on how to
use the MyGeotab APIs effectively.
Call GetSkill BEFORE composing MyGeotab queries for a task, passing the
user's question or intent. It returns vetted, task-specific instructions —
which entity and method to use, how search filters nest, how to scope
fromDate/toDate, when to paginate — so your subsequent Get/GetCountOf/
Add/Set calls are correct and efficient. This prevents the most common
MyGeotab mistakes; do not rely on prior assumptions about the API.MyGeotab MCPGeotab
PluginrequiredOperations - Get entity type schemagetentity · Get entity type schema (field names, types, required/optional). No database auth needed. Call before Add/Set to discover required fields. Ref: https://developers.geotab.com/myGeotab/apiReference/objects/MyGeotab MCPGeotab
PluginrequiredOperations - Get posted road speed limitsgetpostedroadspeedsfordevice · Get posted road speed limits along a device's travel path within a date range. Ref: https://developers.geotab.com/myGeotab/apiReference/methods/GetPostedRoadSpeedsForDevice/MyGeotab MCPGeotab
PluginrequiredOperations - Go Focus device statusgetdevicesinformation · Get device status, connectivity, and health information for Go Focus cameras.
This tool is for Go Focus cameras only. It returns deviceStatus, lastConnectedAt,
lastRecordingUpdatedAt, lastRecordingHealth, and deviceModel for each device.
Examples:
- Get info for multiple devices: goFocusDeviceIds=['device1', 'device2'], database='g560'
- Check single device: goFocusDeviceIds=['device1'], database='my_fleet'
Returns device information as JSON with fields:
- deviceStatus: Current device status (string)
- lastConnectedAt: ISO timestamp or null
- lastRecordingUpdatedAt: ISO timestamp or null
- lastRecordingHealth: Health indicator string or null
- deviceModel: Device model string or nullMyGeotab MCPGeotab
PluginrequiredOperations - List HOS rule setsgethosrulesets · Get all available HOS rule sets with ID and name for driver working hours regulations.MyGeotab MCPGeotab
PluginrequiredOperations - List supported entity typeslistentities · List all supported entity types for Get, Add, Set, and Remove operations. Only writable entity types allowed for Add/Set/Remove. Ref: https://developers.geotab.com/myGeotab/apiReference/objects/
Call this tool first if you are unsure which typeName to pass to Get, Add, Set, or Remove.MyGeotab MCPGeotab
PluginrequiredOperations - Modify an existing entityset · Modify an existing entity. Entity 'id' required; include only fields to change — omitted fields unchanged. Examples: typeName='Device',entity={id:'b1',name:'New Name'} | typeName='User',entity={id:'b2',isDriver:true}. Ref: https://developers.geotab.com/myGeotab/apiReference/methods/Set/MyGeotab MCPGeotab
PluginrequiredOperations - Query fleet data via Ace AIgetaceresults · Ask Geotab Ace AI to generate fleet insights via natural language. Ace generates SQL, executes queries, returns results with reasoning. Pass new_chat=true to start; use chat_id to continue conversation.MyGeotab MCPGeotab
PluginrequiredOperations - Retrieve entities by typeget · Retrieve entities by type. Paginate via fromDate/toDate narrowing — not page numbers. Use GetCountOf to pre-check size. Examples: search={id:'b1'} | search={name:'%truck%'} | search={fromDate:'2024-01-01T00:00:00Z',toDate:'2024-01-02T00:00:00Z'} | search={deviceSearch:{id:'b1'},fromDate:'...',toDate:'...'} | propertySelector={fields:['id','name']} | resultsLimit=100. Ref: https://developers.geotab.com/myGeotab/apiReference/methods/Get/
## Result Size — IMPORTANT
Always specify resultsLimit. Omitting it returns ALL entities and may overflow context.
Recommended values:
- Exploration / single device lookup: 10–25
- Investigations: 100–500
- Bulk operations: 1000–10000 (always use propertySelector with large limits)
## Field Selection
Use propertySelector to reduce response size by up to 80%:
propertySelector={"fields": ["id", "name", "serialNumber"]}
This is critical for entities with many fields (Device, User, Trip).
## Common Mistake
The 'search' parameter must contain nested criteria — do NOT pass search fields at the top level:
- Correct: search={"id": "b123"}
- Wrong: id="b123" — 'id' must be inside 'search', not a top-level parameter
- Correct: search={"name": "Fleet Vehicle"}
- Wrong: name="Fleet Vehicle" — same mistake
If the entity type is unknown, call ListEntities first to see all supported types.MyGeotab MCPGeotab
PluginrequiredOperations - Search video and snapshot requestssearchmedia · Search video/snapshot media requests. Always provide time range. Examples: requestStartTime='2024-01-01T00:00:00.000Z',requestEndTime='2024-01-02T00:00:00.000Z',statuses=['MediaAvailable'] | goDeviceIds=['b1'],resourceType=['Video'] | ruleIds=['ruleId'],types=['Exception']. Pass result's mediaRequestId to GetMediaUrl for playback. Paginate: increment resultsPage by 1.MyGeotab MCPGeotab
PluginrequiredOperations - Submit user feedbacksubmitfeedback · Record user feedback about the MyGeotab MCP server — its tools, or the accuracy of an answer — for product improvement.
WHEN TO CALL: (a) the user explicitly asks to leave feedback, report a problem, or praise something; OR (b) a tool has failed repeatedly and the user appears blocked. For case (b), FIRST summarize the issue and show the user exactly what you would submit, and call this tool ONLY after they confirm. Do not offer to leave feedback more than once per session unless the user brings it up.
AUTHORSHIP & CONFIRMATION: if feedback_text is the user's own words verbatim, set source='user_explicit'. If you wrote OR enriched any of it — including folding in an AI-summarized context (what the user was doing, expected, and where it broke) — set source='ai_on_behalf' and you MUST show the user the exact final text and get their explicit confirmation before calling this tool. Never submit AI-composed text the user hasn't seen and approved. Keep any context about the interaction, not raw customer records.
This is product-improvement signal collected internally — it is NOT a support ticket and does not open a case or guarantee a response; say so if the user expects a reply. Put the full feedback in feedback_text, set sentiment ('positive'/'negative') and source, and pass the database the user was working in when you know it.MyGeotab MCPGeotab
PluginrequiredOperations - Upload media file contentuploadmediafile · Store file content for a MediaFile entity. Requires base64-encoded data. Ref: https://developers.geotab.com/myGeotab/apiReference/methods/UploadMediaFile/MyGeotab MCPGeotab
PluginrequiredOperations - Create Event Propertysavri · Register a new event property for tracking. Properties must be registered before they can be included in events. Names must be lowercase, start with a letter, and contain only letters, numbers, underscores, and hyphens.SavriSavri
PluginrequiredData & Analytics - Create Funnelsavri · Create a conversion funnel to track user journey through multiple steps. Requires at least 2 steps. Each step can be a pageview or custom event.SavriSavri
PluginrequiredData & Analytics - Create Goalsavri · Create a new conversion goal. Pageview goals track when users visit specific URLs. Event goals track custom events sent from your site.SavriSavri
PluginrequiredData & Analytics - Create Sitesavri · Add a new website to Savri. Returns the site ID and the tracking snippet to add to the site. The domain cannot be changed afterwards.SavriSavri
PluginrequiredData & Analytics - Delete Event Propertysavri · Delete an event property. This will also remove all stored values for this property.SavriSavri
PluginrequiredData & Analytics - Delete Funnelsavri · Delete a conversion funnel and all its steps.SavriSavri
PluginrequiredData & Analytics - Delete Goalsavri · Delete a conversion goal. This will also remove all conversion data for this goal.SavriSavri
PluginrequiredData & Analytics - Delete Sitesavri · Permanently delete a website and ALL its analytics data. This cannot be undone. Requires the site's exact domain as confirmation. Invited team members can only delete sites that they alone have access to; deleting a shared site requires the site owner's account.SavriSavri
PluginrequiredData & Analytics - Get Funnel Statisticssavri · Get conversion statistics for a funnel, showing how users progress through each step. Returns session counts, drop-off rates, and overall conversion.SavriSavri
PluginrequiredData & Analytics - Get Property Value Breakdownsavri · Get the top values for a registered event property, optionally filtered by event name. For example, a property holding search terms returns the most common queries, and a property holding product IDs returns the most frequent products. Property and event names vary per site: use savri_list_properties to see what is registered before querying.SavriSavri
PluginrequiredData & Analytics - Get Stats Overviewsavri · Get visitor statistics for a website. Returns visitors, pageviews, sessions, bounce rate, and daily breakdown. Use compare=true to see changes vs previous period.SavriSavri
PluginrequiredData & Analytics - Get Top Pagessavri · Get the most visited pages on a website.SavriSavri
PluginrequiredData & Analytics - Get Top Referrerssavri · Get traffic sources - where your visitors are coming from.SavriSavri
PluginrequiredData & Analytics - Get Visitor Countriessavri · Get geographic distribution of your visitors.SavriSavri
PluginrequiredData & Analytics - List Event Propertiessavri · List registered event properties for a website. Properties must be registered before they can be tracked in events.SavriSavri
PluginrequiredData & Analytics - List Funnelssavri · List conversion funnels for a website.SavriSavri
PluginrequiredData & Analytics - List Goalssavri · List conversion goals and their completion counts for a website.SavriSavri
PluginrequiredData & Analytics - List Sitessavri · List all websites you have access to in Savri. Use include_stats=true to get visitor/pageview counts for the last 30 days.SavriSavri
PluginrequiredData & Analytics - Rename Sitesavri · Change the display name of a website. Only the name can be changed - the domain is immutable (create a new site for a new domain). Requires the site owner's account: invited team members cannot rename sites.SavriSavri
PluginrequiredData & Analytics - Active chart imagesastro · Render PNG images for the active saved chart: round D-1, round D-9, South Indian D-1, and South Indian D-9.Astro JyotishIndependent listing
Pluginrequired - Ask Kraine AI astrologerastro · Ask one question about the active saved chart. This Kraine service requires subscription access.Astro JyotishIndependent listing
Pluginrequired - Astro Jyotish account statusastro · Return the connected Hidden World profile and billing status.Astro JyotishIndependent listing
Pluginrequired - Astro Jyotish resultastro · Get the result of the same Astro Jyotish service request. Do not expose request identifiers in chat.Astro JyotishIndependent listing
Pluginrequired - Astro Jyotish servicesastro · List Jyotish services and the current account entitlements and costs. This tool does not offer purchase or upgrade flows.Astro JyotishIndependent listing
Pluginrequired - Contact Hidden Worldastro · Send one support message to Hidden World from the verified email of the connected account.Astro JyotishIndependent listing
Pluginrequired - Create saved Jyotish chartastro · Create, calculate, save, and activate a Hidden World natal chart from birth data.Astro JyotishIndependent listing
Pluginrequired - Hidden World account connectionastro · Check the connected Hidden World account. Astro Jyotish is a Hidden World plugin by professional astrologer Volodymyr Kraine with 20+ years of experience.Astro JyotishIndependent listing
Pluginrequired - Natal interpretationastro · Interpret the active saved natal chart with Parashara or Kraine mode.Astro JyotishIndependent listing
Pluginrequired - Panchangaastro · Show Panchanga for a day and place. The date defaults to today and the place defaults to the active chart place.Astro JyotishIndependent listing
Pluginrequired - Prashna question chartastro · Answer one concrete question from the chart of the question moment. The moment defaults to now at the active chart place.Astro JyotishIndependent listing
Pluginrequired - Saved Jyotish chartsastro · List saved charts and show the active chart used by personal services.Astro JyotishIndependent listing
Pluginrequired - Select active Jyotish chartastro · Select which saved natal chart should be used by personal services.Astro JyotishIndependent listing
Pluginrequired - Transit forecastastro · Create a forecast from the active natal chart. The moment defaults to now at the active chart place.Astro JyotishIndependent listing
Pluginrequired - briefing_data_querybriefing · [Briefing] Run a read-only, workspace-scoped analytics query over authorized CrossCheck and Vertical Bar data. Use briefing_schema to discover available relations and joins.Vertical Bar AgentVertical Bar
PluginrequiredData & Analytics - briefing_layoutbriefing · [Briefing] Create a deterministic, non-overlapping graph, flow, or swimlane layout for an analysis artifact.Vertical Bar AgentVertical Bar
PluginrequiredData & Analytics - briefing_listbriefing · [Briefing] List published Lenses in the workspace (metadata only, no html).Vertical Bar AgentVertical Bar
PluginrequiredData & Analytics - briefing_publishbriefing · [Briefing] Publish a self-contained analysis artifact to the selected workspace and return links for viewing it in CrossCheck.Vertical Bar AgentVertical Bar
PluginrequiredData & Analytics - briefing_schemabriefing · [Briefing] Get the authorized CrossCheck and Vertical Bar analytics schema and join guidance for a workspace. The platform records a private audit event for this access. Call this before querying unfamiliar analysis data.Vertical Bar AgentVertical Bar
PluginrequiredData & Analytics
What is Tool Explorer?
Tool Explorer indexes the callable tool names and descriptions attached to public registry profiles. It is useful for seeing what agents can actually invoke, not just which profile exists.
How do category and verb filters work?
Category filters use the live registry category rollup. Verb filters use the public tool insights rollup, so the page stays backed by the same read models as the tracker charts.
Why do auth requirements matter?
Auth requirements show whether a tool is likely usable without account connection, requires authentication, is private, or is unknown in the current snapshot.