Connect Kohnex Brain to ChatGPT, Claude, Manus, OpenCode, or any AI agent. Choose MCP for native agent tools or REST API for custom integrations.
Use Kohnex Brain as a Custom GPT Action via OpenAPI schema. Add knowledge graph intelligence to any ChatGPT conversation.
REST API (OpenAPI)Connect directly via MCP. Add one config block and all five Kohnex tools appear in Claude instantly.
MCP (Direct)Connect via REST API bridge. Manus can call Kohnex Brain tools as external API actions for cross-domain reasoning.
REST APINative MCP support. Add as remote server in opencode.json — all tools available in any agent.
MCP (Direct)Both support MCP. Add Kohnex Brain as a remote MCP server. Get cross-domain intelligence inside your editor.
MCP (Direct)Use the REST API directly. Build your own integration or AI agent with JSON POST requests to kohnex.com.
REST APIKohnex Brain works as a Custom GPT Action using the OpenAPI schema. Your GPT gets access to all five brain tools.
{
"openapi": "3.1.0",
"info": {
"title": "Kohnex Brain",
"version": "1.0.0"
},
"servers": [
{"url": "https://kohnex.com"}
],
"paths": {
"/api/v1/explore": {
"post": {
"summary": "Deep-explore the knowledge graph",
"operationId": "kohnex_explore",
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object",
"required": ["query"],
"properties": {
"query": {"type": "string", "description": "Your question or topic"},
"depth": {"type": "string", "default": "auto", "description": "quick, auto, or deep"}
}
}
}
}
},
"responses": {"200": {"description": "Comprehensive exploration"}}
}
},
"/api/v1/think": {
"post": {
"summary": "Brain activation on a query",
"operationId": "kohnex_think",
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object",
"required": ["query"],
"properties": {
"query": {"type": "string"},
"mode": {"type": "string", "default": "auto"}
}
}
}
}
},
"responses": {"200": {"description": "OK"}}
}
}
},
"components": {
"securitySchemes": {
"ApiKeyAuth": {
"type": "http",
"scheme": "bearer"
}
}
}
}
Go to ChatGPT and create a new Custom GPT. Configure basic profile and description.
Under "Actions", choose "Import from URL" and paste: https://kohnex.com/openapi.yaml
Choose "Bearer" auth and enter your Kohnex API key: khnx_your_key
Add this to GPT instructions:
Full OpenAPI schema available at kohnex.com/openapi.yaml
Claude Desktop and Claude Code support MCP natively. Add Kohnex Brain as a remote MCP server.
Edit your MCP config file:
Run:
After connecting, use: use kohnex to find nature metaphors for distributed consensus
Manus can use Kohnex Brain via REST API endpoints. Configure as an external API tool.
Native MCP support. Add as remote server in your opencode.json.
{
"mcp": {
"kohnex": {
"type": "remote",
"url": "https://kohnex.com/mcp",
"headers": {
"Authorization": "Bearer khnx_your_key"
}
}
}
}
Then restart OpenCode. Use in any agent: use kohnex to explore nature metaphors for my caching strategy
All endpoints require Bearer auth with your Kohnex API key. Endpoints return JSON.
/api/v1/think
Full brain activation on any query. Returns top nodes, nature metaphor, ancient wisdom, and eureka connections.
/api/v1/path
Shortest path between two nodes in the knowledge graph.
/api/v1/domain
List all nodes in a domain: performance, cyber, fault, sovereign_math, etc.
/api/v1/mode
Describe a thinking mode and its parameters.
/api/v1/stats
Get brain statistics: node counts by type, edge distribution, inhibitory ratio, domain coverage, methodology count.
/api/v1/explore
Deep exploration: runs multiple thinking modes, domain deep-dives, path-finding, and methodology matching in one call. The recommended tool for complex queries.
/api/v1/methodologies
List all methodologies. Filter by tag or domain.
/api/v1/methodologies/generate
AI-generate a new methodology from a prompt.
| Tool | Cost | Plan Required |
|---|---|---|
| think, mode, stats | 1 query | Starter+ |
| path | 5 queries | Pro+ |
| domain | 3 queries | Pro+ |
| explore | 5 queries | Pro+ |
| methodologies (list, get) | 1 query | Starter+ |
| methodologies (generate, create, update, fork, delete) | 2-3 queries | Pro+ |
Use MCP if you are in Claude Desktop, Claude Code, OpenCode, Cursor, or VS Code — it works natively. Use REST API + OpenAPI schema if you are in ChatGPT, a custom app, or a platform that cannot install MCP servers.
Sign up at kohnex.com/pricing. The free Starter plan includes 100 queries.
Yes. All REST endpoints require a Bearer khnx_your_key header, just like MCP.
Yes, rate limits depend on your plan: Starter 30 req/min, Pro 120 req/min, Team 600 req/min, Enterprise 1200 req/min.