HomeAPI ManualMCP ServerMCP Server Admin Settings

7.1. MCP Server Admin Settings

Updated: 10 Sep 2026, 02:15 PM EDT

The HelpSpot MCP (Model Context Protocol) server lets AI agents—such as Claude, Cursor, ChatGPT, and GitHub Copilot—connect to your HelpSpot instance and work with requests, the knowledge base, and related data on a staff member's behalf. Every action an agent takes is performed as the authenticated staff user and respects that user's existing permissions.

This page explains the MCP administration screen and what each setting does. For step-by-step instructions on connecting a specific client, see the other pages in this chapter.

Where to Find the Settings

  1. Log in to your HelpSpot admin area.
  2. Go to Settings.
  3. Select MCP.

The screen is titled MCP Server (AI Agents) and is divided into general settings and a list of available tools.

Enable MCP Server

The master switch for the feature. When it is off, the MCP server is completely unavailable and every connection attempt is rejected, regardless of any other setting on this page.

MCP Server URL

The read-only address that MCP clients connect to. It always ends in /mcp and is based on your installation's base URL.

Allowed OAuth Redirect Domains

Controls which external clients are permitted to register with your MCP server through OAuth dynamic client registration. Enter one origin per line, for example https://claude.ai.

Clients that authenticate with a personal access token (rather than OAuth registration) do not depend on this list—see below.

Available Tools

This section lists every tool the MCP server can expose to AI agents, grouped by area (Requests, Knowledge Books, and supporting lookups). Each tool has its own switch.

Write tools vs. read-only tools

Tools that create or modify data (for example, creating a request or updating a knowledge base page) are treated as write tools. Read-only tools only retrieve information. The Disable all write tools button acts on the write tools as a group.

Private vs. public request tools

Some tools come in a public and a private variant, and the two cannot be enabled at the same time:

The public variant sends customer-facing email as it normally would. The private variant performs the same action without emailing the customer or sending any external mail—useful when you want agents to log notes and updates internally only. When you enable one variant, its counterpart is automatically disabled, and the screen notes that a tool is “available when” its sibling is disabled.

Tool Reference

The following tools are available. Tools marked (write) create or change data; all others are read-only.

Requests

Knowledge Books

Supporting Lookups

How Staff Connect

After you enable the server and configure the settings above, each staff member connects their own client:

All access is per-user: an agent can only see and change the data the connected staff member is allowed to see and change.

Tool Output Is Text, Not Structured Data

MCP tools return their results as a single text content item written for an AI agent to read. For example, get-request-tool returns line-oriented plain text (Request #12345, Title: …, Status: …, followed by recent history). It is not JSON, and the server does not return structuredContent or declare an output schema. History notes in this output have HTML removed and are truncated to 500 characters.

The labels and layout are presentation text and may change between releases, so do not build an integration that parses them.

If you need machine-readable request data, use the HelpSpot Private API instead, which returns JSON when you pass output=json:

GET /api/index.php?method=private.request.get&output=json&fRawValues=1&xRequest=<ID>
Authorization: Bearer <API_TOKEN>

The Private API must be enabled under Admin > Settings > Web Services API and is separate from the MCP tool list. API tokens are generated from a staff profile and inherit that account's permission group and category access. See Private Methods.

Related articles: Private Methods · API Basics: URL, Methods, Return Formats, Authentication

Security Notes

This page was: Helpful | Not Helpful