Zum Hauptinhalt springen

MCP Server Overview

The Ever Gauzy MCP (Model Context Protocol) Server enables AI assistants to interact with the Gauzy platform.

What is MCP?

MCP is an open protocol that allows AI applications (like Claude, ChatGPT, etc.) to interact with external tools and data sources through a standardized interface.

Production Servers

ServerURL
UShttps://mcp.gauzy.co
EUhttps://mcp.gauzy.eu

Available Tools

The MCP Server provides 323+ tools across all Gauzy modules:

CategoryTool CountExamples
Employee30+Create, update, list employees
Time Tracking40+Start timer, log time, timesheets
Projects25+Create project, manage tasks
Invoicing20+Generate invoice, track payments
Organization35+Manage departments, teams, settings
CRM20+Contacts, pipelines
Reports15+Generate analytics, statistics

Connection Methods

TransportUse CaseURL
HTTP/RESTStandard API calls/mcp/rest
WebSocketReal-time streaming/mcp/ws
StdioLocal processBinary executable

Authentication

OAuth 2.0 with PKCE flow:

# 1. Get authorization URL
GET /mcp/auth/authorize?client_id=your-app&redirect_uri=...

# 2. Exchange code for token
POST /mcp/auth/token
{ "code": "auth-code", "grant_type": "authorization_code" }

# 3. Use token in requests
Authorization: Bearer <access-token>