Claude Code
Add as an MCP server in Claude Code CLI, both stdio and remote HTTP. View guide
Nevent AI is a Model Context Protocol server that exposes 52 tools on top of the Nevent events CRM (campaigns, analytics, segments, paid media, short URLs). Available as a hosted service at https://mcp.nevent.ai/mcp and as a local npm package (mcp-nevent v1.2.1).
Nevent AI supports two transport modes:
| Mode | Transport | When to use |
|---|---|---|
| Hosted (HTTP) | Streamable HTTP over https://mcp.nevent.ai/mcp | Recommended — no installation, OAuth 2.1, multi-tenant |
| Local (stdio) | stdin/stdout via npx mcp-nevent | Local development, CI/CD integrations, access from Claude Code |
Hosted (HTTP): OAuth 2.1. The MCP server acts as an authorization server, issuing short-lived JWTs after validating Nevent credentials. Each session is isolated — there are no shared service accounts.
Local (stdio): Direct authentication with NEVENT_JWT_TOKEN. The stdio process is invoked by the MCP client (Claude Desktop, Cursor, etc.) and communicates over stdin/stdout.
DataClient for capabilities and segmentation criteria reduce API calls on repeated invocations within a session.READ_ONLY / STANDARD / FULL) controls which write tools are available, protecting against accidental mutations.mcp-neventClaude Code
Add as an MCP server in Claude Code CLI, both stdio and remote HTTP. View guide
Claude Desktop
Configure claude_desktop_config.json on macOS and Windows.
View guide
Cursor, Cline, Continue, VS Code
Configuration for IDEs and code extensions. View guide
Local installation
Environment variables, stdio and HTTP modes, building from source. View guide