Skip to main content
The Rayify MCP server (@rayify-ai/mcp) is the slim-8 integration surface designed for LLM-driven workflows. It exposes 4 pull tools + 4 push tools + 3 guided prompts.

Install

The MCP server runs via npx - no install step required:

Configure your AI client

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%/Claude/claude_desktop_config.json (Windows):
Restart Claude Desktop. The Rayify tools appear in the tool list with a hammer icon.

Cursor

Open Cursor Settings → Features → Model Context Protocol → Add MCP Server. Configure:
  • Name: rayify
  • Command: npx
  • Args: -y @rayify-ai/mcp
  • Env: RAYIFY_API_KEY=sk_your_key

ChatGPT (via custom GPT)

ChatGPT does not yet have native MCP support. Use the TypeScript SDK instead, exposed as a Custom Action.

Generic MCP client

Any client that speaks MCP can connect:
The server speaks MCP over stdio.

The 8 tools

Pull (4)

Push (4)

The 3 guided prompts

Slash-prompts that an MCP client can surface:

What’s not in the MCP surface

The MCP server is intentionally slim - heavy authoring lives on the web app (rayify.ai):
  • Matrix / likert / star_rating question authoring (create_survey accepts string arrays only)
  • Project editing, deleting, sharing
  • Agent template editing
  • Org / billing / settings
If you need any of these, use the SDK or the web app.

Authentication

The MCP server reads RAYIFY_API_KEY from the environment. Pass it via the env block of your MCP client config, never hardcoded. For workspaces with multiple users, provision a per-user API key - the MCP server’s actions are recorded under the key’s owner in the audit log.

What’s next