Skip to main content

Quick start

Three steps. Under 15 minutes.

MCP endpoint

One URL. Every AI tool.

Point Claude, ChatGPT, Cursor, or any MCP-compatible client at this endpoint. OAuth 2.1 handles auth automatically.

MCP Endpoint https://api.helix.nylas.com/mcp
Discovery https://api.helix.nylas.com/.well-known/mcp.json
OAuth Metadata https://api.helix.nylas.com/.well-known/oauth-protected-resource

MCP tools

10 tools. Email, calendar, contacts, identity.

Every tool respects the user's approval policy. Mutating actions (send, create) return pending_approval when the user requires human review.

REST API

Prefer HTTP? Use the REST endpoints directly.

GET/api/v1/email/threads
GET/api/v1/email/threads/:threadId
GET/api/v1/email/messages/:messageId
POST/api/v1/email/send
GET/api/v1/calendar/events
POST/api/v1/calendar/events
GET/api/v1/contacts
GET/api/v1/identity
GET/api/v1/identity/pending-actions
POST/api/v1/identity/pending-actions/:id/approve

Skip the boilerplate

What Helix saves you from.

Most of the work in shipping an agent that acts as a user is identity plumbing. Helix already did it.

Why Helix

Not just email. An identity your agents share.

Authentication

Three ways to authenticate.

Human approval engine

Ship agents to production with confidence.

Every mutating tool call can be gated by the user's approval policy. Pass a confidence score with your request — if it exceeds the user's threshold, the action executes. Otherwise, it queues for human review.

// Your agent calls email_send via MCP
{
  "tool": "email_send",
  "arguments": {
    "to": [{ "email": "investor@acme.com" }],
    "subject": "Q4 Update",
    "body": "Hi Sarah, attached is our Q4 investor update..."
  }
}

// If user's approval policy = "sensitive" and
// confidence < threshold → response:
{
  "status": "pending_approval",
  "pendingActionId": "act_8x7k...",
  "summary": "Send email to investor@acme.com: Q4 Update"
}
// User approves in Helix UI → email sends

15 minutes to your first API call.

Connect your email, generate an API key, start shipping. Free tier — no credit card.

Get free API key