Platform
Data source: Internal registry
MCP Protocol
Endpoint
https://context.gnist.ai/mcp/compose/
claude_desktop_config.json
{
"mcpServers": {
"gnist-compose": {
"url": "https://context.gnist.ai/mcp/compose/",
"headers": {
"Gnist-API-Key": "YOUR_API_KEY"
}
}
}
}
Shell
curl -X POST "https://context.gnist.ai/mcp/compose/" \
-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": "search_tools", "arguments": {"query": "example"}}}'
REST API
API Root
https://context.gnist.ai/rest/compose/
10 endpoints available:
GET /rest/compose/list_available_serversGET /rest/compose/search_toolsGET /rest/compose/create_toolbeltGET /rest/compose/list_toolbeltsGET /rest/compose/get_toolbeltGET /rest/compose/update_toolbeltGET /rest/compose/delete_toolbeltGET /rest/compose/list_presetsGET /rest/compose/preview_toolbeltGET /rest/compose/report_feedback
Shell
curl "https://context.gnist.ai/rest/compose/search_tools?query=example" \ -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx
resp = httpx.get(
"https://context.gnist.ai/rest/compose/search_tools",
headers={"Gnist-API-Key": "YOUR_API_KEY"},
params={
"query": "example"
},
)
print(resp.json())
Command Line
Command
gc compose
CLI documentation will be available when the GnistAI SDK is published.
Install
pip install gnistai
Available Tools (10)
list_available_serversList all registered Gnist Context MCP servers.
search_toolsSearch all registered MCP tools by keyword or intent.
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | required | |
top_n | integer | optional | (default: 10) |
create_toolbeltCreate a named toolbelt — a curated subset of tools served as one MCP endpoint.
| Parameter | Type | Required | Description |
|---|---|---|---|
name | string | required | |
tools | list[string] | required | |
description | string | optional | (default: "") |
validate | boolean | optional | (default: true) |
auto_complete | boolean | optional | (default: false) |
ttl_days | any | optional |
list_toolbeltsList all saved toolbelts with name, url, tool count, and timestamps.
get_toolbeltGet the full definition of a named toolbelt.
| Parameter | Type | Required | Description |
|---|---|---|---|
name | string | required |
update_toolbeltAdd or remove tools from an existing toolbelt. The URL stays stable.
| Parameter | Type | Required | Description |
|---|---|---|---|
name | string | required | |
add_tools | any | optional | |
remove_tools | any | optional | |
validate | boolean | optional | (default: true) |
delete_toolbeltSoft-delete a toolbelt. The endpoint stops serving immediately.
| Parameter | Type | Required | Description |
|---|---|---|---|
name | string | required |
list_presetsList curated preset toolbelts — ready-to-use bundles for common use cases.
preview_toolbeltPreview a toolbelt without saving. Estimates token cost and checks coupling.
| Parameter | Type | Required | Description |
|---|---|---|---|
tools | list[string] | required |
report_feedbackReport a bug, feature request, or general feedback for this data source.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |