Using Cursor with DataDoe MCP
Use Cursor when you want a coding workspace that can talk to DataDoe directly through MCP.
Prerequisites
- Cursor (opens in a new tab) installed and signed in.
- A DataDoe MCP key. Create one in DataDoe MCP Integrations (opens in a new tab).
Step 1: Add the DataDoe MCP server
Add this to ~/.cursor/mcp.json (global) or .cursor/mcp.json (project-scoped):
1{
2 "mcpServers": {
3 "datadoe": {
4 "envFile": "${workspaceFolder}/.cursor/.env",
5 "command": "yarn",
6 "args": [
7 "run",
8 "mcp-remote",
9 "https://mcp.datadoe.com/mcp/v1",
10 "--header",
11 "datadoe-mcp-key: ${DATADOE_MCP_KEY}"
12 ]
13 }
14 }
15}Replace YOUR_API_KEY with your DataDoe MCP key.
Step 2: Reload Cursor
Restart Cursor (or reload the window) so it picks up the new MCP server.
Step 3: Test the connection
Run a prompt that uses DataDoe data, for example:
Show me my Amazon Seller Central sales for the last 7 days.If Cursor returns real data, you're connected.
Starter project
Want a working starting point? Clone our Cursor template repository (opens in a new tab) - it ships preconfigured.
DataDoe MCP resources
Check the following resources for more information:
- MCP server URL:
https://mcp.datadoe.com/mcp/v1 - Interactive Data Scheme
- Data Scheme JSON: https://api.datadoe.com/api/v1/spec/data-scheme
- Need help? Use the contact form
DataDoe Hub docs
Edit this page on GitHub →
