Data source: Internal registry
https://context.gnist.ai/mcp/resolver/
AuthenticationAll requests require a Gnist-API-Key header (or api_key query parameter).
Free tier: 100 calls/day. Get your API key.
Tools (4)
resolve_entityResolve an entity name to canonical identifiers across all relevant Gnist Context servers.
Given a name and type, queries multiple upstream servers in parallel and returns
a unified identity card with native identifiers per source. Results are cached
for 24 hours.
Args:
name: Entity name to resolve.
Examples: "Equinor", "Albert Einstein", "Norway", "machine learning"
entity_type: Type of entity. One of: company, person, country, research_topic.
hints: Optional dict of hints to narrow resolution.
For company: {"country": "NO"} to include Norwegian registry (Brreg).
For country: {"code": "NO"} to query economic databases by code.
Returns:
Identity card with:
- canonical_name: Best-match canonical name
- entity_type: The resolved type
- identifiers: Dict keyed by source (brreg, gleif, wikidata, etc.),
each containing the source's native identifiers
- sources_ok / sources_failed: Resolution success counts
- cached: Whether result came from cache
| Parameter | Type | Required | Description |
|---|---|---|---|
name | string | required | Entity name to resolve. |
entity_type | string | required | |
hints | any | optional |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "resolve_entity",
"arguments": {
"name": "example",
"entity_type": "example"
}
}
}list_entity_typesList all entity types available for resolution.
Returns the type name, description, and which upstream resolvers are
configured for each type.
Returns:
Dict with count and entity_types list.
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "list_entity_types",
"arguments": {}
}
}resolver_cache_statsReturn statistics about the entity resolution cache.
Returns:
Dict with entries, valid, expired, max_size, and ttl_seconds.
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "resolver_cache_stats",
"arguments": {}
}
}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") |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "report_feedback",
"arguments": {
"feedback": "example"
}
}
}Quick Start
curl -X POST "https://context.gnist.ai/mcp/resolver/" \
-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": "resolve_entity", "arguments": {"name": "example", "entity_type": "example"}}}'
import httpx
resp = httpx.post(
"https://context.gnist.ai/mcp/resolver/",
headers={"Gnist-API-Key": "YOUR_API_KEY", "Content-Type": "application/json"},
json={
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "resolve_entity",
"arguments": {
"name": "example",
"entity_type": "example"
}
}
},
)
print(resp.json())