Skip to content

Model context protocol (MCP)

Entrig MCP lets your AI agent create, update, list, and delete Entrig notifications using natural language.

This is a beta feature focused on managing push notifications.

Connect your agent

Add Entrig to your .mcp.json file:

{
"mcpServers": {
"entrig": {
"type": "http",
"url": "https://mcp.entrig.com/",
"headers": {
"Authorization": "Bearer YOUR_ENTRIG_API_KEY"
}
}
}
}

Available tools

  • get_tables - read the database schema
  • list_notifications - list existing notifications
  • create_notification - create a notification
  • update_notification - update a notification
  • delete_notification - delete a notification
  • feature_request - record unsupported requests

Example prompts

Create a notification:

Notify all members of a group chat
when someone sends a new message
in that group, except the sender.

Update a notification:

Update the order shipped notification
so it only sends when the status changes
from processing to shipped.

List notifications:

Show me all notifications configured
on the orders table.

Delete a notification:

Find the duplicate message notification
and delete it after confirming
the right one.

Troubleshooting

Missing Authorization header

Send:

Authorization: Bearer YOUR_ENTRIG_API_KEY

Invalid Authorization header format

Make sure the header value starts with Bearer followed by your API key.

Server is reachable, but actions fail

Check that:

  • the API key belongs to the correct Entrig project
  • the requested notification matches your schema
  • the agent selected the correct table, recipient path, and conditions