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

# Setup

> Install and configure the MeetGeek Local MCP server.

## Prerequisites

* Node.js 18 or later
* A MeetGeek account with a Public API key ([get one here](https://app.meetgeek.ai/integrations))
* An MCP-compatible client (e.g. Claude Desktop, Cursor)

## Installation

Install the MeetGeek MCP server globally via npm:

```bash theme={null}
npm install -g @meetgeek/mcp-server
```

## Configure your MCP client

Add the following entry to your MCP client's configuration file.

<Tabs>
  <Tab title="Claude Desktop">
    Edit the following file based on your operating system:

    * macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
    * Windows: `%APPDATA%\Claude\claude_desktop_config.json`

    Ensure the file contains the following configuration:

    ```json theme={null}
    {
      "mcpServers": {
        "meetgeek": {
          "command": "meetgeek-mcp",
          "env": {
            "MEETGEEK_API_KEY": "your_api_key_here"
          }
        }
      }
    }
    ```
  </Tab>

  <Tab title="Cursor">
    Open **Settings → MCP** and add a new server entry:

    ```json theme={null}
    {
      "name": "meetgeek",
      "command": "meetgeek-mcp",
      "env": {
        "MEETGEEK_API_KEY": "your_api_key_here"
      }
    }
    ```
  </Tab>
</Tabs>

## Verify the connection

Restart your MCP client. The MeetGeek tools should appear in the available tools list. You can test by asking your AI assistant:

> "List my recent MeetGeek meetings"
