MCP Server
Syncontrol supports connections via MCP (Model Context Protocol), allowing you to connect external AI tools directly to your Syncontrol data. The endpoint uses OAuth 2.0 dynamic client registration for token issuance and adheres to modern security standards.
AI features require the AI & Analytics Package subscription.
Overview
MCP enables third-party AI applications like Claude and Perplexity to query your Syncontrol data directly. Once connected, you can ask questions about your bookings, inspections, clients, and other data using your preferred AI interface.
Connecting with Claude
To connect Claude to the MCP server:
- Follow the tutorial: Use a Remote MCP Server
- Give the server a clear name (e.g.,
syncontrol) — you’ll need to reference it in questions - The server address is
[your-domain]/mcp— make sure to use HTTPS
Example query: “count total bookings in syncontrol”
Connecting with Perplexity
Perplexity doesn’t yet follow the standard MCP authentication protocol, so you’ll need to manually issue an OAuth token first.
Creating an OAuth Token
- Open the Syncontrol platform and log in
- Click on your user profile icon in the top-right corner
- Navigate to OAuth > Personal Access Tokens
- Click Create new Token
- Check all scopes and click Create
- Copy the token value from the input field
Adding the Server to Perplexity
- Follow the tutorial: Local and Remote MCPs for Perplexity
- In the Add Connector menu, click the Advanced tab
- Paste the following JSON, replacing the placeholders:
{
"command": "npx",
"args": [
"-y",
"supergateway",
"--streamableHttp",
"https://YOUR_SERVER.syncontrol.com/mcp",
"--oauth2Bearer",
"YOUR_TOKEN"
]
}
Replace:
-
YOUR_SERVERwith your server subdomain -
YOUR_TOKENwith the OAuth token you copied
- Choose a meaningful Server Name — you’ll reference it in questions
Example query: “count total bookings in syncontrol”