Connect Proprietary / M2M Client

For server-to-server or programmatic access — where there is no end user completing a browser login — InSync MCP supports OAuth 2.0 Client Credentials flow (machine-to-machine).

MCP Endpoint

URL
https://ai-mcp.insyncanalytics.com/mcp

Getting Credentials

Email inquiries@insyncanalytics.com to request M2M access. Once approved, your client_id and client_secret will be shared with you directly.

Setup

Configure your MCP client with the credentials provided:

json
{
  "mcpServers": {
    "insync-analytics": {
      "type": "http",
      "url": "https://ai-mcp.insyncanalytics.com/mcp",
      "auth": {
        "type": "client_credentials",
        "client_id": "YOUR_CLIENT_ID",
        "client_secret": "YOUR_CLIENT_SECRET"
      }
    }
  }
}

Your client exchanges the client_id and client_secret for an access token automatically. No browser redirect or user login is involved.

Rate Limits

M2M clients have higher rate limits than interactive (OAuth Authorization Code) clients:

Window Limit
Per minute 180 requests
Per hour 1,800 requests

Troubleshooting

See Troubleshooting → Common Issues for general diagnostics. For M2M-specific credential issues, contact inquiries@insyncanalytics.com.