GnistAI GnistAI
Log in

Handshake

Connection test and capability negotiation for MCP clients.

Overview   |   MCP   |   REST API   |   OpenAPI   |   CLI   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 2 tools tools 2 2 type: calculator type type calculator calculator lifecycle: hidden lifecycle lifecycle hidden hidden Platform

Data source: Internal

MCP Endpoint (Streamable HTTP) https://context.gnist.ai/mcp/handshake/
Authentication

All requests require a Gnist-API-Key header (or api_key query parameter).

Free tier: 100 calls/day. Get your API key.

Tools (2)

shake_hand

Authenticated handshake. Requires OAuth. If this responds, auth is working.

ParameterTypeRequiredDescription
namestringrequired
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "shake_hand",
    "arguments": {
      "name": "example"
    }
  }
}
report_feedback

Report 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'.

ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (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/handshake/" \
  -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": "shake_hand", "arguments": {"name": "example"}}}'
Python
import httpx

resp = httpx.post(
    "https://context.gnist.ai/mcp/handshake/",
    headers={"Gnist-API-Key": "YOUR_API_KEY", "Content-Type": "application/json"},
    json={
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "shake_hand",
    "arguments": {
      "name": "example"
    }
  }
},
)
print(resp.json())

Related Toolkits (Platform)

Resources