Platform
Data source: Internal
MCP Endpoint (Streamable HTTP)
https://context.gnist.ai/mcp/hello/
AuthenticationAll requests require a Gnist-API-Key header (or api_key query parameter).
Free tier: 100 calls/day. Get your API key.
Tools (2)
say_helloSay hello. Open endpoint — no authentication required. Use to verify MCP connectivity.
| Parameter | Type | Required | Description |
|---|---|---|---|
name | string | required |
JSON-RPC Request
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "say_hello",
"arguments": {
"name": "example"
}
}
}report_feedbackReport a bug, feature request, or general feedback for this data source.
Use this when something doesn't work as expected, when you'd like
a new feature, or when you have suggestions for improvement.
Args:
feedback: Describe the issue or suggestion.
feedback_type: One of 'bug', 'feature_request', or 'general'.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |
JSON-RPC Request
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "report_feedback",
"arguments": {
"feedback": "example"
}
}
}Quick Start
Shell
curl -X POST "https://context.gnist.ai/mcp/hello/" \
-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": "say_hello", "arguments": {"name": "example"}}}'
Python
import httpx
resp = httpx.post(
"https://context.gnist.ai/mcp/hello/",
headers={"Gnist-API-Key": "YOUR_API_KEY", "Content-Type": "application/json"},
json={
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "say_hello",
"arguments": {
"name": "example"
}
}
},
)
print(resp.json())
Related Toolkits (Platform)
Compose
Create and manage toolbelts — curated subsets of tools served as single MCP endpoints.
Resolver
Cross-server entity resolution — resolve names to canonical identifiers across all data servers.
Handshake
Connection test and capability negotiation for MCP clients.
Webhook Subscriptions
Manage webhook subscriptions for push-based data delivery — subscribe to entity changes, list subscriptions, and track d