@trigv/mcp
Enables AI clients in Cursor, Claude Code, and VS Code to send notification events to your Trigv workspace.
README
@trigv/mcp
MCP (Model Context Protocol) server for Trigv. Lets AI clients in Cursor, Claude Code, and VS Code send notification events to your Trigv workspace.
What Trigv is
Trigv delivers developer notifications to your team's devices. Your backend (or AI agent) sends lightweight JSON events; Trigv queues push delivery. Notification title and body are not stored on Trigv servers — metadata only.
Installation
npm install @trigv/mcp
Or run directly with npx:
npx @trigv/mcp
Quick start
- Create a workspace API key at app.trigv.com.
- Set
TRIGV_API_KEYin your MCP client config (see below). - Ask your AI assistant to send an event using the
send_eventtool.
Example tool call:
{
"channel": "deploys",
"title": "Production deploy complete",
"description": "Build #42 succeeded in 38s (commit abc1234)",
"level": "success",
"event_type": "deploy.completed",
"idempotency_key": "deploy-prod-42"
}
Authentication
| Variable | Required | Default | Description |
|---|---|---|---|
TRIGV_API_KEY |
Yes | — | Workspace ingest API key (trgv_…) |
TRIGV_BASE_URL |
No | https://api.trigv.com/api |
Override for local dev (http://trigv-platform.test/api) |
The API key is sent as Authorization: Bearer and is never included in tool responses or error messages.
Tool: send_event
Sends a notification event via POST /v1/events.
| Field | Required | Description |
|---|---|---|
channel |
Yes | Channel slug (e.g. general, deploys) |
title |
Yes | Notification title |
description |
No | Body text |
image_url |
No | HTTPS image URL (not stored server-side) |
url |
No | Destination URL for the notification (max 2048 characters; not stored server-side) |
level |
No | info, success, warning, error (default: info) |
delivery_urgency |
No | standard or time_sensitive (default: standard) |
event_type |
No | Free-form label (e.g. deploy.completed) |
idempotency_key |
No | Dedup key per workspace |
Success response includes event.public_id, duplicate (true when HTTP 200), and other event metadata.
Error response includes error.type, error.message, and optional error.errors for validation failures.
Levels
info— general information (default)success— completed successfullywarning— attention needederror— failure or alert
Delivery urgency
standard— normal notifications (default)time_sensitive— iOS Time Sensitive delivery
Idempotency
When you set idempotency_key, retries with the same key return the existing event (duplicate: true) without billing again.
Error handling
| Error type | When |
|---|---|
ConfigurationError |
Missing TRIGV_API_KEY |
ValidationError |
Invalid input (client or server 422) |
AuthenticationError |
HTTP 401 |
AuthorizationError |
HTTP 403 |
NotFoundError |
Channel not found (HTTP 404) |
RateLimitError |
HTTP 429 |
NetworkError / TimeoutError |
Connection issues |
MCP client configuration
Cursor
Add to .cursor/mcp.json in your project (or global Cursor MCP settings):
{
"mcpServers": {
"trigv": {
"command": "npx",
"args": ["-y", "@trigv/mcp"],
"env": {
"TRIGV_API_KEY": "trgv_your_api_key_here"
}
}
}
}
For a local checkout during development:
{
"mcpServers": {
"trigv": {
"command": "node",
"args": ["/path/to/trigv-mcp/dist/index.js"],
"env": {
"TRIGV_API_KEY": "trgv_your_api_key_here",
"TRIGV_BASE_URL": "http://trigv-platform.test/api"
}
}
}
}
Claude Code
Add to ~/.claude/settings.json or project .claude/settings.json:
{
"mcpServers": {
"trigv": {
"command": "npx",
"args": ["-y", "@trigv/mcp"],
"env": {
"TRIGV_API_KEY": "trgv_your_api_key_here"
}
}
}
}
VS Code
Add to .vscode/mcp.json in your workspace:
{
"servers": {
"trigv": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@trigv/mcp"],
"env": {
"TRIGV_API_KEY": "trgv_your_api_key_here"
}
}
}
}
Examples
Basic event
{ "channel": "general", "title": "Hello from MCP" }
Deploy completed (canonical)
{
"channel": "deploys",
"title": "Production deploy complete",
"description": "Build #42 succeeded in 38s (commit abc1234)",
"level": "success",
"delivery_urgency": "standard",
"event_type": "deploy.completed",
"idempotency_key": "deploy-prod-42"
}
Cron job failed
{
"channel": "alerts",
"title": "Nightly backup failed",
"description": "Exit code 1 after 12 minutes",
"level": "error",
"event_type": "cron.failed"
}
Development
git clone https://github.com/Trigv/trigv-mcp.git
cd trigv-mcp
npm install
npm run build
npm test
Run locally:
TRIGV_API_KEY=trgv_… npm run dev
Testing
npm test
Tests use mocked HTTP — no live API key required in CI.
Contributing
See the Trigv SDK programme for API contract and conformance requirements.
Licence
MIT — see LICENSE.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。