The Nylas CLI, Nylas skill, and Claude Code plugin are live

The Nylas CLI, Nylas skill, and Claude Code plugin are live

3 min read
Tags:

Nylas is now native in the coding agents you’re already using

If you’re building with Claude Code, Cursor, Codex, or any other coding agent, you’ve probably already felt the friction: the agent knows how to write code, but when it hits anything involving email or calendar APIs, it slows down. It guesses at endpoints, writes boilerplate auth code from memory, and asks you questions it shouldn’t have to ask.

That friction is gone, thanks to Nylas.

Nylas is now native in the coding agents you’re already using. Three ways to install, depending on how you work.

The Nylas CLI

The Nylas CLI runs in your terminal. Any agent with shell access can use it directly. That includes Claude Code, Cursor, Codex, and open source coding agents. You don’t have to install an SDK or set up OAuth to use it.

Install it in one command:

brew install nylas/nylas-cli/nylas

No Homebrew? Use the install script instead:

curl -fsSL https://cli.nylas.com/install.sh | bash

Run nylas init once to authenticate, and your agent can immediately start sending email, listing calendar events, creating meetings, managing contacts, and spinning up webhooks — all from the terminal, all with structured JSON output it can parse and act on.

For coding agents specifically, the most useful part is credential discovery. Before writing a line of code, your agent can run nylas auth whoami –json to check whether credentials already exist on the machine, extract the API key and grant ID automatically, and write them to .env  without ever asking you to copy-paste anything.

For autonomous agents that need their own identity — a sales agent, a support bot, a shared service mailbox — the CLI provisions Agent Accounts directly:

nylas agent account create outreach@yourcompany.com

One command. The agent has its own Nylas-hosted email address and calendar. No OAuth, no shared inbox, no credentials tied to a human account that can expire when someone leaves.

Quickstart: Autonomous AI agents →

The Nylas skill

The Nylas skill pre-loads your coding agent with current Nylas API, CLI, and SDK context. Instead of exploring the docs mid-task or guessing at endpoint shapes, the agent already knows the right patterns before it writes the first line.

Install both skills — API and CLI — in one command:

npx skills add nylas/skills

Or install them individually:

npx skills add nylas/skills/nylas-api
npx skills add nylas/skills/nylas-cli

The nylas-api skill covers authentication, email, calendar, contacts, webhooks, Scheduler, Notetaker, and SDK usage across Node.js, Python, Ruby, and Java/Kotlin. The nylas-cli skill covers every CLI command, flag, and expected output shape.

Skills work with Claude Code, Cursor, Codex , and 40+ other agents. Install once and the agent writes correct Nylas code on the first try.

Guide for AI coding agents

The Claude Code plugin

If you work in Claude Code, the plugin installs the skills and wires up the MCP server in one step.

/plugin marketplace add nylas/skills
/plugin install nylas-skills

Once installed, Claude Code has email, calendar, and contacts as native tools it can call at any point in a session, not just when you point it at the docs. The plugin covers slash commands, MCP tool definitions, and the full Nylas CLI context.

For teams already using Claude Code as their primary coding environment, this is the fastest path from zero to a working Nylas integration.

Which one to install

If you’re using Claude Code: start with the plugin. It handles everything.

If you’re using Cursor, Codex, or another agent: install the skill with npx skills add nylas/skills. The CLI comes along with it.

If you’re building an autonomous agent that needs its own email identity: install the CLI directly and use nylas agent account create to provision Agent Accounts.

All three are live today. Install the one that matches your setup and start building.

For AI coding agents | For autonomous agents

Related resources

Gmail API limitations for autonomous AI agents (and what to use instead)

Most teams building AI features that touch email start in the same place: the Gmail…

The things AI agents still can’t do

AI agents are getting better at reasoning, but most still struggle to act inside the…

How agentic AI adoption is scaling from the inside out

Public conversations about agentic AI focus on what customers will see. Autonomous support agents. AI…