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

# Connecting

> Add the Nowadays MCP server to your client and sign in with OAuth.

## Endpoint

```
https://api.nowadays.ai/mcp
```

Authentication is **OAuth 2.1** (authorization code + PKCE). Your client registers
itself through Dynamic Client Registration, so there is nothing to pre-configure
and no key to store.

## Connect your client

<Steps>
  <Step title="Add the server">
    <Tabs>
      <Tab title="Claude">
        Go to Settings → Connectors → Add custom connector, then enter the URL
        `https://api.nowadays.ai/mcp`.
      </Tab>

      <Tab title="Cursor">
        Add the server to your MCP config:

        ```json theme={null}
        {
          "mcpServers": {
            "nowadays": { "url": "https://api.nowadays.ai/mcp" }
          }
        }
        ```
      </Tab>
    </Tabs>
  </Step>

  <Step title="Sign in">
    Your client opens a browser on first connect. Log in with your Nowadays
    identity — Google or your company SSO — and approve access.
  </Step>

  <Step title="Choose an organization">
    Skip this step if your account belongs to a single organization; the tools
    resolve it automatically.

    If you belong to **more than one**, call
    [`select_organization`](/mcp/tools) once. The choice is remembered for that
    client until you change it, and applies to every tool, reads and writes
    alike.
  </Step>

  <Step title="Verify the connection">
    Ask your agent to list your events. A page of results means the connection
    works.
  </Step>
</Steps>
