Platform
Data source: Internal
MCP Protocol
Endpoint
https://context.gnist.ai/mcp/monitors/
claude_desktop_config.json
{
"mcpServers": {
"gnist-monitors": {
"url": "https://context.gnist.ai/mcp/monitors/",
"headers": {
"Gnist-API-Key": "YOUR_API_KEY"
}
}
}
}
Shell
curl -X POST "https://context.gnist.ai/mcp/monitors/" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-H "Gnist-API-Key: YOUR_API_KEY" \
-d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "create_monitor", "arguments": {"api_key": "example", "entity_type": "example", "entity_id": "example"}}}'
REST API
API Root
https://context.gnist.ai/rest/monitors/
5 endpoints available:
GET /rest/monitors/create_monitorGET /rest/monitors/list_monitorsGET /rest/monitors/delete_monitorGET /rest/monitors/list_monitor_alertsGET /rest/monitors/report_feedback
Shell
curl "https://context.gnist.ai/rest/monitors/create_monitor?api_key=example&entity_type=example&entity_id=example" \ -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx
resp = httpx.get(
"https://context.gnist.ai/rest/monitors/create_monitor",
headers={"Gnist-API-Key": "YOUR_API_KEY"},
params={
"api_key": "example",
"entity_type": "example",
"entity_id": "example"
},
)
print(resp.json())
Command Line
Command
gc monitors
CLI documentation will be available when the GnistAI SDK is published.
Install
pip install gnistai
Available Tools (5)
create_monitorCreate an entity monitor to watch for data changes.
| Parameter | Type | Required | Description |
|---|---|---|---|
api_key | string | required | Your Gnist API key (starts with 'gnist_'). |
entity_type | string | required | Entity type to monitor (e.g. 'brreg_company', 'doffin_tender', 'sec_edgar_filing'). |
entity_id | string | required | ID of the entity to monitor (e.g. org number, notice ID). |
list_monitorsList all active entity monitors for your API key.
| Parameter | Type | Required | Description |
|---|---|---|---|
api_key | string | required | Your Gnist API key (starts with 'gnist_'). |
delete_monitorRemove an entity monitor (soft delete).
| Parameter | Type | Required | Description |
|---|---|---|---|
api_key | string | required | Your Gnist API key (starts with 'gnist_'). |
monitor_id | string | required | UUID of the monitor to remove. |
list_monitor_alertsList alerts for an entity monitor, newest first.
| Parameter | Type | Required | Description |
|---|---|---|---|
api_key | string | required | Your Gnist API key (starts with 'gnist_'). |
monitor_id | string | required | UUID of the monitor to list alerts for. |
limit | integer | optional | Maximum number of alerts to return. (default: 50) |
report_feedbackReport a bug, feature request, or general feedback for this data source.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |