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/mcpSSE 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
Claude.ai
Requirements: Paid Anthropic plan (Team or Enterprise) or appropriate API access tier
Sign in to claude.ai
In the prompt box, select the Search and tools icon, and select Add connectors
In Connectors, select Manage connectors
In Connectors, select Add custom connector
In Add custom connector, enter:
Name: PointFive (or a name that fits your usage)
Remote MCP server URL:
https://mcp.pointfive.co/mcp
Select Add
Once the connector is added, select Connect to connect to the PointFive MCP server
Complete the authorization in the PointFive authorization page that opens
You can now open a new chat to start asking questions about your PointFive data.
Claude Desktop
Claude Desktop
Requirements: Claude Desktop app (Free or Pro subscription)
Locate the configuration file:
β
βmacOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
Add this configuration:
{
"mcpServers": {
"pointfive": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.pointfive.co/mcp"]
}
}
}3. Restart Claude Desktop
Claude Code
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
ChatGPT
Requirements: ChatGPT Plus or Pro subscription with access to the ChatGPT web app
Access ChatGPT Settings:
Open ChatGPT in your web browser
Click on the settings icon or menu
In the Settings menu, click on Connectors
Add the PointFive MCP Connector:
Click on Advanced settings, switch on Developer mode
Then click Create in the Browse connectors section
Configure the connector:
Add a name for this connector: PointFive
In the "Remote MCP server URL" field, enter:
https://mcp.pointfive.co/mcpClick Add to confirm adding the PointFive MCP server
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
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
Cursor
Requirements: Cursor IDE
Access Cursor settings:
Open Cursor > Settings (macOS) or File > Preferences (Windows/Linux)
Go to Cascade > MCP servers
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
Visual Studio Code
Requirements: VS Code with MCP extension
Open the command palette with
Ctrl/Cmd + PSearch for MCP: Add Server
Select Command (stdio)
Enter the following configuration, and hit enter:
npx mcp-remote https://mcp.pointfive.co/mcp
Enter the name PointFive and hit enter
Activate the server using MCP: List Servers and selecting PointFive, and selecting Start Server
Windsurf
Windsurf
Requirements: Windsurf IDE
Open settings with
Ctrl/Cmd +,Scroll to Cascade -> MCP servers
Select Add Server -> Add custom server
Add this configuration:
{
"mcpServers": {
"pointfive": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.pointfive.co/mcp"]
}
}
}Zed
Zed
Requirements: Zed editor
Open settings with
Cmd +,Add the following:
{
"context_servers": {
"pointfive": {
"command": {
"path": "npx",
"args": ["-y", "mcp-remote", "https://mcp.pointfive.co/mcp"],
"env": {}
},
"settings": {}
}
}
}Other MCP Clients
Other MCP Clients
For additional MCP-compatible tools, use these standard settings:
Command:
npxArguments:
-y mcp-remote https://mcp.pointfive.co/mcpEnvironment variables: None required