> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hologrow.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Using VS Code with the Marrow MCP

# Using VS Code with the Marrow MCP

Use VS Code when you want to stay in the editor and query Marrow through an MCP-capable assistant, such as GitHub Copilot Chat.

<img src="https://mintlify.s3.us-west-1.amazonaws.com/hologrowinc/hub-files/mcp/marrow/vs-code-connector.png" alt="VS Code connector setup steps" />

## Prerequisites

* VS Code with an MCP-capable extension installed (GitHub Copilot Chat or similar).
* A Marrow MCP key. Create one in [Marrow MCP Integrations](https://app.marrow.com/integrations/mcp).

## Step 1: Add the Marrow MCP server

Add the following configuration to `.vscode/mcp.json` for a project, or to your user `mcp.json` for global use:

```json theme={null}
{
    "servers": {
        "marrow": {
            "type": "http",
            "url": "https://mcp.marrow.com/mcp/v1",
            "headers": {
                "marrow-mcp-key": "YOUR_API_KEY"
            }
        }
    }
}
```

Replace `YOUR_API_KEY` with your Marrow MCP key.

## Step 2: Reload VS Code

Reload the VS Code window (Cmd/Ctrl+Shift+P → **Developer: Reload Window**) so the extension picks up the new server.

## Step 3: Test the connection

Run a prompt that uses Marrow data, for example:

```text theme={null}
Show me my Amazon Seller Central sales for the last 7 days.
```

If your assistant returns real data, you are connected.

## Starter project

Want a working starting point? Clone our [VS Code template repository](https://github.com/Deltologic/marrow-mcp-vs-code-co-pilot), which comes preconfigured.

***

## Marrow MCP resources

Check the following resources for more information:

* MCP server URL: `https://mcp.marrow.com/mcp/v1`
* [Interactive Data Scheme](/hub/data-scheme)
* Data Scheme JSON: [https://api.marrow.com/api/v1/spec/data-scheme](https://api.marrow.com/api/v1/spec/data-scheme)
* Need help? Use the [contact form](https://forms.clickup.com/9015200219/f/8cnj2ev-38615/AOYF9I35QFOXWJQXIG?type=Form\&source=hub-mcp-vs-code-docs)
