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

REST Bridge Endpoint https://context.gnist.ai/rest/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
Request Body
{
  "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")
Request Body
{
  "feedback": "example"
}

Quick Start

Shell
curl -X POST "https://context.gnist.ai/rest/handshake/shake_hand" \
  -H "Content-Type: application/json" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"name": "example"}'
Python
import httpx

resp = httpx.post(
    "https://context.gnist.ai/rest/handshake/shake_hand",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    json={
  "name": "example"
},
)
print(resp.json())

Related Toolkits (Platform)

Resources