Public Preview Cursor by Anysphere is a Code OSS-based editor with built-in AI features. The Wherobots extension installs from the Open VSX Registry, but the MCP Server and Agent Skills must be configured manually. Cursor uses its ownDocumentation Index
Fetch the complete documentation index at: https://docs.wherobots.com/llms.txt
Use this file to discover all available pages before exploring further.
mcp.json schema (mcpServers, not servers), so follow the Cursor-specific steps below to install the MCP Server and Agent Skills.
Component Overview
Wherobots’ Agentic Tools consist of the following components that work together to provide our agentic experience:MCP Server
MCP Server
Agent Skills
Agent Skills
Wherobots CLI
Wherobots CLI
Why use Wherobots’ agentic tools?
Wherobots’ agentic tools connect your AI assistant to Wherobots Cloud and your local development environment so you can interact with your spatial data, catalogs, and jobs in a more intuitive way.Explore your spatial catalog conversationally
Explore your spatial catalog conversationally
Generate Spatial SQL without memorizing functions
Generate Spatial SQL without memorizing functions
Submit and monitor Wherobots jobs from your editor
Submit and monitor Wherobots jobs from your editor
Get Wherobots-aware AI assistance
Get Wherobots-aware AI assistance
wherobots CLI commands, valid MCP tool calls, and accurate notebook code on the first try.Before you start
Prior to installing the Wherobots VS Code extension, make sure you have:-
Cursor installed.
- Active Cursor subscription in order to select the model used by your Agent within Cursor.
-
A Wherobots Account within a Community, Professional, or Enterprise Organization. See Create a Wherobots Account.
Organization Availability: Available to all Wherobots Organization Editions.
- Community Edition Organizations can create and run local notebooks against the Tiny and Micro runtimes.
- Professional or Enterprise Organizations are required for job submission, the Wherobots MCP server, and additional compute tiers. For more information, see Upgrade Organization or Organization Editions.
-
Node.js installed (for running
npx skillswhen installing Agent Skills).
Install the extension
Run the following command in your terminal:ms-toolsai. If Cursor prompts that it cannot activate the extension because of a missing Jupyter dependency, click Install and Reload.

Configure the extension
After installation, set your API key to connect to Wherobots Cloud.Open the Command Palette
>wherobots:.
Set your API key
- If you don’t have an API key yet, click
Wherobots: Generate API Key on Wherobots Cloudto create one. - Click
Wherobots: Set API Keyand enter your existing or newly created Wherobots API key when prompted, then press Enter.
Verify the installation
To confirm the extension is installed and configured correctly:Open the Command Palette
>wherobots:.
Apply the extension to all profiles (optional)
If you use multiple Cursor profiles, right-click the Wherobots - Spatial AI Coding Assistant entry in the Extensions view and select Apply Extension to all Profiles so the extension is available in every profile.
Configure the MCP Server
The Wherobots MCP Server enables AI assistants to explore your spatial data catalogs, generate Spatial SQL, and execute queries. Cursor expects a project-level.cursor/mcp.json file with an mcpServers object.
Open Tools & MCPs in Cursor Settings
.cursor/mcp.json in your project root.
Add the Wherobots MCP server
.cursor/mcp.json, replacing <YOUR_WHEROBOTS_API_KEY> with your Wherobots API key, then save the file.
Reload and confirm the server is enabled
- Open the Command Palette and select Developer: Reload Window.
- Return to Cursor Settings > Tools & MCPs and confirm that
wherobots-mcp-serveris listed, has a green status dot, and lists its tools (for example,list_catalogs_tool,list_tables_tool,describe_table_tool,execute_query_tool,search_documentation_tool) plus prompts and aget_versionresource.

Install Agent Skills
Agent Skills give your AI assistant domain-specific knowledge about Wherobots workflows, APIs, and best practices. The Wherobots skill pack is distributed via the skills CLI.Run the skills installer
Select the Wherobots skills
wherobots-develop— guidance for writing Wherobots jobs and using the SDK/CLI.wherobots-explore— catalog discovery and spatial query generation via the MCP server.wherobots-usage— interface decision matrix, auth setup, and scheduled-job patterns.

Select Cursor as a target agent
~/.claude/skills).Press Enter to continue.
Verify your setup
- Open a New Agent chat in Cursor (the chat panel on the right).
- Confirm Agent is selected as the chat mode.
-
Ask a test question, for example:
List the available tables in wherobots_pro_data
-
If everything is configured, Cursor’s agent calls
search_documentation_tool,list_catalogs_tool,list_databases_tool, andlist_tables_toolonwherobots-mcp-serverand returns the catalogs, databases, and tables in your Organization.
-
Re-open Cursor Settings → Tools & MCPs and confirm
wherobots-mcp-servershows a green dot with all tools enabled.
Pin the extension for easy access
If the Wherobots VS Code Extension is pinned to your sidebar, you can also create a new workspace by clicking the Create Workspace button.
Pin the extension
Troubleshooting
Invalid config: mcpServers must be an object or JSON syntax error
Cursor validates .cursor/mcp.json against its own schema and will display these errors in Cursor Settings → Tools & MCPs when the file is malformed.
Common causes:
- Missing the outer
{ ... }wrapper around the config — the JSON parser fails with “End of file expected.” - Using the VS Code key
"servers"instead of Cursor’s"mcpServers". - Including a
"type": "http"field — Cursor does not use it.


