Using VS Code
Using VS Code with DataDoe MCP
Use VS Code when you want to stay in the editor and still query DataDoe through an MCP-enabled assistant.
Prerequisites
- You have access to DataDoe and a working MCP-capable agent or client.
- You know where that agent stores its MCP server configuration.
Step 1: Add the DataDoe MCP server
Open the VS Code MCP or agent settings for your extension and add the DataDoe MCP server there.
Add this to .vscode/mcp.json or your user mcp.json:
1{
2 "servers": {
3 "datadoe": {
4 "type": "http",
5 "url": "https://mcp.datadoe.com/mcp/v1",
6 "headers": {
7 "datadoe-mcp-key": "YOUR_API_KEY"
8 }
9 }
10 }
11}
12
13## Step 2: Reload the agent
14
15Restart the agent so it picks up the new MCP server definition.
16
17## Step 3: Test it
18
19Run your first prompt, for example: `Show me all sellers and vendors from DataDoe`.
20
21## Starter Project
22
23If you want a starting point, use our [VS Code template repository](https://github.com/Deltologic/datadoe-mcp-vs-code-co-pilot).
24
25---
26
27<DataDoeMcpResources contactSource="hub-mcp-vs-code-docs" />