The feature is currently in the testing phase and is therefore not yet available to all users. If you are interested in testing it, please contact us at podpora@raynet.cz and we will gladly grant you access.
The MCP server connects Raynet CRM with any AI assistant that supports MCP, such as ChatGPT or Claude.
This allows you to work with CRM data directly from a regular chat – without the need to switch to Raynet. The AI can search for information in the CRM based on your input, display records, and, if permitted, also create or modify records.
Practically, you can tell the AI, for example:
“Find the company Raynet and show me its contacts.”
“How many open business cases do we have with Raynet?”
“Show me the latest activities for this lead.”
“Create a new lead with this information and schedule a call for me.”
The MCP server is not another application or function directly in the CRM. It is a connection between the CRM and the AI tool, which you are already using.
Important : We are not responsible for the use of third-party tools, and their use is at the user's own discretion.
You can find the developer documentation here. The limit is 24 thousand calls/day and applies to the entire account.
Tip : For working with sensitive data internally, we recommend using AI tools that comply with GDPR requirements and data protection settings (for example, Google). To make the setup as simple as possible and to avoid complications, we recommend entrusting the connection to your developer or a colleague with technical knowledge.
In this article, you will learn:
MCP server connection
Each user needs their own access key for MCP, which is created by the administrator in the CRM Administration. When it is created, it is set whether it allows only reading or also data modifications; the key will only be displayed once, so it needs to be securely stored.
In the top right corner, click on your name -> Settings.
Here, select the section MCP keys.
To add a new MCP key, click on New MCP key.
Name the MCP key, for example, according to the AI application and the user's name (e.g., ChatGPT – John Brown ), and choose permissions Read or Read and Write. The Read and Write option allows the AI to not only view data but also create and modify records in Raynet. You confirm the settings by clicking the Create MCP key button.
A dialog box will appear, in which you need to copy the MCP key. This key will be used to connect to the AI tool. It will not be possible to return to it later.
Antigravity 2.0
Antigravity is a Google application, where you can utilize various models of artificial intelligence – for example, Gemini, Claude or ChatGPT. You simply choose which model you want to use for a specific task, and Antigravity provides you with an environment in which you can work with it. The basic version is also available for free.
To connect via the MCP server, you need to have the desktop application installed.
Click on the bottom left on Settings -> Customizations -> Open MCP Config.
Open the file in any text editor and paste the following template, in which you will fill in your MCP key. Instead of the entire inscription, paste your copied MCP key here.
Copy the entire template :
{
"mcpServers": {
"Raynet": {
"url": "https://app.raynet.cz/api/mcp",
"headers": {
"Authorization": "Bearer paste your MCP key here"
}
}
}
}
You save changes in the text editor using the keyboard shortcut cmd+S and then you can close the text editor.
In the Antigravity application, you will see that the connection was successfully established.
Once you enter the first command in the Antigravity application, the application will ask you for permission to use the MCP tool. You can choose the option “Yes, and always allow” and confirm it by clicking the Submit button.
ChatGPT
It is currently possible to connect Raynet CRM with the desktop application ChatGPT. Remote MCP servers in ChatGPT require a Business, Enterprise or Edu plan with Developer mode enabled.
In the bottom left corner, click on your name -> Settings -> Plugins.
Then click the button Add -> Add MCP server in the top right corner.
In the dialog box, enter the required information:
- Name : enter the connection name
- Connection type : switch to Streamable HTTP
- URL : enter https://app.raynet.cz/api/mcp
- Header – Key : enter Authorization
- Header – Value : paste the copied MCP server header
Once you have filled everything out and saved it, you can return to the ChatGPT application and enter the first command.
Claude
Claude is an AI application from Anthropic that helps you with working with texts, documents, information, and other tasks. If you want to connect it with other tools using MCP, you need to use its desktop version.
For easier installation, we recommend downloading and installing the Node.js tool. This tool allows you to run the necessary components for connecting Claude with other services. In our case, you need it for the MCP server to function.
In the Claude application, click on the bottom left on your name -> Settings.
Expand the Developer tab -> Edit Config.
Open the file in a text editor and paste the prepared template, which you will find below.
{
"mcpServers": {
"Raynet": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://app.raynet.cz/api/mcp",
"--header",
"Authorization: Bearer paste your MCP key here "
]
}
}
}