Data source: Internal registry
https://context.gnist.ai/rest/compose/
AuthenticationAll requests require a Gnist-API-Key header (or api_key query parameter).
Free tier: 100 calls/day. Get your API key.
Tools (10)
list_available_serverssearch_toolscreate_toolbeltlist_toolbeltsget_toolbeltupdate_toolbeltdelete_toolbeltlist_presetspreview_toolbeltreport_feedback
list_available_serversList all registered Gnist Context MCP servers.
Returns server name, mount path, tool count, description, and category
for every upstream data server available for toolbelt composition.
Returns:
Dict with a "servers" list. Each entry has:
- name: Display name (e.g. "GLEIF (LEI)")
- mount_path: Server path (e.g. "/gleif")
- tool_count: Number of tools in the server
- description: What the server provides
- category: Data category (e.g. "Finance", "Science")
{
"query": "example"
}search_toolsSearch all registered MCP tools by keyword or intent.
Results include a colon-namespaced tool_ref (e.g. "gleif:search_entities")
ready for use with create_toolbelt.
Args:
query: Natural language or keyword search.
top_n: Max results (default 10, max 20).
Returns:
Dict with matching tools, each including tool_ref for toolbelt use.
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | required | |
top_n | integer | optional | (default: 10) |
{
"query": "example"
}create_toolbeltCreate a named toolbelt — a curated subset of tools served as one MCP endpoint.
The toolbelt becomes available at /mcp/{name}/ as a standard MCP server
containing only the selected tools, namespaced with colons.
Args:
name: URL-safe slug (3-64 chars, lowercase alphanum + hyphens).
tools: Tool refs in colon format (e.g. ["gleif:search_entities", "news:search_news"]).
Use search_tools to discover available refs.
description: Optional human-readable description.
validate: Check coupling dependencies (default true).
auto_complete: Automatically add hard dependencies (default false).
ttl_days: Auto-expire after N days. Null = no expiry.
Returns:
Created toolbelt with url, tool_count, warnings, and auto_added tools.
| 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 |
{
"name": "example",
"tools": [
"example"
]
}list_toolbeltsList all saved toolbelts with name, url, tool count, and timestamps.
Returns:
Dict with count and toolbelts list.
{
"query": "example"
}get_toolbeltGet the full definition of a named toolbelt.
Args:
name: Toolbelt slug.
Returns:
Full toolbelt definition including tools, url, and coupling warnings.
| Parameter | Type | Required | Description |
|---|---|---|---|
name | string | required |
{
"name": "example"
}update_toolbeltAdd or remove tools from an existing toolbelt. The URL stays stable.
Args:
name: Toolbelt slug.
add_tools: Tool refs to add (colon format).
remove_tools: Tool refs to remove.
validate: Re-check coupling after changes (default true).
Returns:
Updated toolbelt definition, or error if not found.
| Parameter | Type | Required | Description |
|---|---|---|---|
name | string | required | |
add_tools | any | optional | |
remove_tools | any | optional | |
validate | boolean | optional | (default: true) |
{
"name": "example"
}delete_toolbeltSoft-delete a toolbelt. The endpoint stops serving immediately.
Args:
name: Toolbelt slug to delete.
Returns:
Confirmation or error.
| Parameter | Type | Required | Description |
|---|---|---|---|
name | string | required |
{
"name": "example"
}list_presetsList curated preset toolbelts — ready-to-use bundles for common use cases.
Presets are pre-configured toolbelts covering domains like Norwegian data,
financial research, academic research, business intelligence, and more.
Each preset is immediately available as an MCP endpoint at /mcp/{name}/.
Returns:
Dict with count and presets list. Each entry has name, description,
url, tool_count, and included servers.
{
"query": "example"
}preview_toolbeltPreview a toolbelt without saving. Estimates token cost and checks coupling.
Use this to evaluate a tool selection before committing to create_toolbelt.
Args:
tools: Tool refs in colon format.
Returns:
Tool count, estimated schema tokens, coupling warnings, and suggestions.
| Parameter | Type | Required | Description |
|---|---|---|---|
tools | list[string] | required |
{
"tools": [
"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") |
{
"feedback": "example"
}Quick Start
curl -X POST "https://context.gnist.ai/rest/compose/search_tools" \
-H "Content-Type: application/json" \
-H "Gnist-API-Key: YOUR_API_KEY" \
-d '{"query": "example"}'
import httpx
resp = httpx.post(
"https://context.gnist.ai/rest/compose/search_tools",
headers={"Gnist-API-Key": "YOUR_API_KEY"},
json={
"query": "example"
},
)
print(resp.json())