← gege.mn

INDIVIDUAL MCP TOOL

create_template

Create a template (POST /templates; write scope).

gege.mnnone authenticationAvailability not checked

LIVE ENDPOINT

https://ray-api.gege.mn/mcp

No auth detected

Connect to this endpoint to inspect the live schema for create_template and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Potential side effects detected · medium confidence · heuristic, not a guarantee.

  • A tool name or description contains a write-action term.

Parent server

gege.mn

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.ray]
url = "https://ray-api.gege.mn/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "ray": {
      "type": "http",
      "url": "https://ray-api.gege.mn/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: ray
Remote MCP URL: https://ray-api.gege.mn/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "ray": {
      "url": "https://ray-api.gege.mn/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "ray": {
      "type": "http",
      "url": "https://ray-api.gege.mn/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "ray",
  "transport": "streamable-http",
  "url": "https://ray-api.gege.mn/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • whoami — Identify the API key this connection uses (GET /me): `tenantId` (the workspace), `apiKeyId` and `scopes`.
  • get_usage — The workspace's plan, subscription status and this calendar month's usage against the monthly quota (GET /billing/subscription).
  • list_channels — List the delivery channels configured in this workspace (GET /channels).
  • send_notification — Send a notification (POST /send; needs a `write`-scoped key).
  • get_send_status — Delivery status of a send (GET /sends/{id}): `aggregate` counts per status over the whole send (pending, claimed, delivered, failed_retryable, failed_terminal, suppressed) plus one page of per-recipient delivery rows including provider errors.
  • list_templates — List message templates (GET /templates): id, name, folder, channelKind, and `publishedVersionId` (null = never published, so it cannot be sent by templateId yet).
  • get_template — Get one template with its published version and its current draft (GET /templates/{id}): content, logTitle/logDescription, `requiredParams` a send must supply, and paramOverrides.
  • update_template_draft — Replace a template's draft (PATCH /templates/{id}; write scope).