GnistAI GnistAI
Log in

Entity Monitors

Create and manage entity monitors — watch specific entities for data changes and receive alerts via webhooks or Atom feeds.

Overview   |   MCP Docs   |   API Docs   |   OpenAPI   |   Playground   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 5 tools tools 5 5 Platform

Data source: Internal

MCP 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"}}}'

API REST API

API Root https://context.gnist.ai/rest/monitors/

5 endpoints available:

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())

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc monitors

CLI documentation will be available when the GnistAI SDK is published.

Install
pip install gnistai

Available Tools (5)

create_monitor
Create an entity monitor to watch for data changes.
ParameterTypeRequiredDescription
api_keystringrequiredYour Gnist API key (starts with 'gnist_').
entity_typestringrequiredEntity type to monitor (e.g. 'brreg_company', 'doffin_tender', 'sec_edgar_filing').
entity_idstringrequiredID of the entity to monitor (e.g. org number, notice ID).
list_monitors
List all active entity monitors for your API key.
ParameterTypeRequiredDescription
api_keystringrequiredYour Gnist API key (starts with 'gnist_').
delete_monitor
Remove an entity monitor (soft delete).
ParameterTypeRequiredDescription
api_keystringrequiredYour Gnist API key (starts with 'gnist_').
monitor_idstringrequiredUUID of the monitor to remove.
list_monitor_alerts
List alerts for an entity monitor, newest first.
ParameterTypeRequiredDescription
api_keystringrequiredYour Gnist API key (starts with 'gnist_').
monitor_idstringrequiredUUID of the monitor to list alerts for.
limitintegeroptionalMaximum number of alerts to return. (default: 50)
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related