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 schemalist_notifications- list existing notificationscreate_notification- create a notificationupdate_notification- update a notificationdelete_notification- delete a notificationfeature_request- record unsupported requests
Example prompts
Create a notification:
Notify all members of a group chatwhen someone sends a new messagein that group, except the sender.Update a notification:
Update the order shipped notificationso it only sends when the status changesfrom processing to shipped.List notifications:
Show me all notifications configuredon the orders table.Delete a notification:
Find the duplicate message notificationand delete it after confirmingthe right one.Troubleshooting
Missing Authorization header
Send:
Authorization: Bearer YOUR_ENTRIG_API_KEYInvalid 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