@trigv/mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@trigv/mcpSend a deploy completed notification to the deploys channel"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@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.
Related MCP server: SuprSend MCP Server
Installation
npm install @trigv/mcpOr run directly with npx:
npx @trigv/mcpQuick 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 |
| Yes | — | Workspace ingest API key ( |
| No |
| Override for local dev ( |
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 |
| Yes | Channel slug (e.g. |
| Yes | Notification title |
| No | Body text |
| No | HTTPS image URL (not stored server-side) |
| No | Destination URL for the notification (max 2048 characters; not stored server-side) |
| No |
|
| No |
|
| No | Free-form label (e.g. |
| 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 |
| Missing |
| Invalid input (client or server 422) |
| HTTP 401 |
| HTTP 403 |
| Channel not found (HTTP 404) |
| HTTP 429 |
| 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 testRun locally:
TRIGV_API_KEY=trgv_… npm run devTesting
npm testTests 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.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Trigv/trigv-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server