Skip to main content

MCP Setup

Updated over 3 months ago

Overview

The PointFive MCP server offers both Server-Sent Events (SSE) and HTTP transport options. Authentication is handled through OAuth 2.1 with dynamic client registration at these endpoints:

  • HTTP transport: https://mcp.pointfive.co/mcp

  • SSE transport: https://mcp.pointfive.co/sse

For optimal performance and reliability, we suggest using the HTTP transport endpoint unless specifically noted otherwise.

Client Configuration

Claude.ai

Requirements: Paid Anthropic plan (Team or Enterprise) or appropriate API access tier

  1. Sign in to claude.ai

  2. In the prompt box, select the Search and tools icon, and select Add connectors

  3. In Connectors, select Manage connectors

  4. In Connectors, select Add custom connector

  5. In Add custom connector, enter:

    • Name: PointFive (or a name that fits your usage)

    • Remote MCP server URL: https://mcp.pointfive.co/mcp

  6. Select Add

  7. Once the connector is added, select Connect to connect to the PointFive MCP server

  8. Complete the authorization in the PointFive authorization page that opens

  9. You can now open a new chat to start asking questions about your PointFive data.

Claude Desktop

Requirements: Claude Desktop app (Free or Pro subscription)

  1. Locate the configuration file:
    ​
    ​

    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

    • Windows: %APPDATA%\Claude\claude_desktop_config.json

  2. Add this configuration:

{
"mcpServers": {
"pointfive": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.pointfive.co/mcp"]
}
}
}

3. Restart Claude Desktop

Claude Code

Requirements: Claude Code CLI tool

Add the PointFive MCP server using SSE transport:

claude mcp add --transport sse pointfive-server https://mcp.pointfive.co/sse

Run /mcp in your Claude Code session to complete the authentication process.

ChatGPT

Requirements: ChatGPT Plus or Pro subscription with access to the ChatGPT web app

  1. Access ChatGPT Settings:

    • Open ChatGPT in your web browser

    • Click on the settings icon or menu

    • In the Settings menu, click on Connectors

  2. Add the PointFive MCP Connector:

    • Click on Advanced settings, switch on Developer mode

    • Then click Create in the Browse connectors section

  3. Configure the connector:

    • Add a name for this connector: PointFive

    • In the "Remote MCP server URL" field, enter: https://mcp.pointfive.co/mcp

    • Click Add to confirm adding the PointFive MCP server

  4. Authenticate your PointFive account:

    • Click Create to begin the authentication process

    • You'll be redirected to a PointFive authorization page

    • Click Authorize to grant permission

  5. Complete the connection:

    • The connection process will complete automatically

    • Return to ChatGPT Settings > Connectors to verify the connection

    • You should now see PointFive listed in your Enabled connectors

Cursor

Requirements: Cursor IDE

  1. Access Cursor settings:

    • Open Cursor > Settings (macOS) or File > Preferences (Windows/Linux)

    • Go to Cascade > MCP servers

  2. Add PointFive server:

    • Click Add Server > Add custom server

    • Use this configuration:

{
"mcpServers": {
"pointfive": {
"url": "https://mcp.pointfive.co/mcp",
"type": "http"
}
}
}

Visual Studio Code

Requirements: VS Code with MCP extension

  1. Open the command palette with Ctrl/Cmd + P

  2. Search for MCP: Add Server

  3. Select Command (stdio)

  4. Enter the following configuration, and hit enter:

npx mcp-remote https://mcp.pointfive.co/mcp
  1. Enter the name PointFive and hit enter

  2. Activate the server using MCP: List Servers and selecting PointFive, and selecting Start Server

Windsurf

Requirements: Windsurf IDE

  1. Open settings with Ctrl/Cmd + ,

  2. Scroll to Cascade -> MCP servers

  3. Select Add Server -> Add custom server

  4. Add this configuration:

{
"mcpServers": {
"pointfive": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.pointfive.co/mcp"]
}
}
}

Zed

Requirements: Zed editor

  1. Open settings with Cmd + ,

  2. Add the following:

{
"context_servers": {
"pointfive": {
"command": {
"path": "npx",
"args": ["-y", "mcp-remote", "https://mcp.pointfive.co/mcp"],
"env": {}
},
"settings": {}
}
}
}

Other MCP Clients

For additional MCP-compatible tools, use these standard settings:

  • Command: npx

  • Arguments: -y mcp-remote https://mcp.pointfive.co/mcp

  • Environment variables: None required

Did this answer your question?