Overview
The Model Context Protocol (MCP) is an open standard that enables Large Language Models (LLMs) to interact with external systems. RelytONE provides a local MCP server that runs on your machine, allowing AI assistants like Cursor and Claude to manage your RelytONE resources through natural language.
Use with Caution : This MCP server grants LLMs direct access to manipulate your RelytONE resources, including creating, modifying, and deleting projects and databases. We strongly recommend NOT using it in production environments. Only use it in development or testing scenarios where accidental changes won’t impact critical systems.
Prerequisites
Before setting up the MCP server, ensure you have:
Node.js version 18.0.0 or higher installed. Check your version with:
RelytONE API Token : Generate an API key from the RelytONE console under Settings → API Keys . You’ll need this token for authentication.
Setup
The MCP server runs locally on your machine using npx.
Installation Options Option 1: One-Click Install Option 2: Manual Configuration Navigate to Preferences → Cursor Settings → MCP → New MCP Server and add: {
"mcpServers" : {
"relytone" : {
"command" : "npx" ,
"args" : [ "--yes" , "@relyt/mcp-server-relytone" ],
"env" : {
"RELYTONE_BEARER_TOKEN" : "your-api-token-here"
}
}
}
}
Verify Connection Once configured successfully, you should see the RelytONE MCP server listed as connected:
Installation Run the following command in your terminal: claude mcp add npx @relyt/mcp-server-relytone \
--env RELYTONE_BEARER_TOKEN=your-api-token-here
Replace
your-api-token-here with your actual API token from the
RelytONE console .
Start Using Start a new Claude Code session and begin using RelytONE MCP with natural language commands!
All RelytONE APIs are exposed as MCP tools. The tool names follow the format <method>-<path>, such as:
get-organizations - List organizations
get-projects - List projects
post-projects - Create a project
get-projects-slug-databases - List databases in a project
post-projects-slug-databases - Create a database
You don’t need to know the exact tool names—simply describe what you want in natural language, and the AI will use the appropriate tools.
Usage Examples
Simply describe what you want in natural language. Here are some examples:
List projects in an organization:
Please list all projects in the "my-org" organization
Create a new project:
Create a project under "my-org" with name "analytics-dev"
and description "Development environment for analytics"
Create a database:
Create a database named "customers" in the "analytics-dev" project
Get project details:
Show me the details and compute resources for project "analytics-dev"