concept_lookup
Query ConceptNet's knowledge graph to retrieve all relationships and properties for a specific concept. Explore semantic information, related concepts, and cross-language data with customizable output formats.
Instructions
Look up information about a specific concept in ConceptNet.
This tool queries ConceptNet's knowledge graph to find all relationships
and properties associated with a given concept. By default, it returns
ALL results (not limited to 20) to provide complete information.
Features:
- Complete relationship discovery for any concept
- Language filtering and cross-language exploration
- Summaries and statistics
- Performance optimized with automatic pagination
- Format control: minimal (~96% smaller) vs verbose (full metadata)
Format Options:
- verbose=false (default): Returns minimal format optimized for LLM consumption
- verbose=true: Returns comprehensive format with full ConceptNet metadata
- Backward compatibility maintained with existing tools
Use this when you need to:
- Understand what ConceptNet knows about a concept
- Explore all relationships for a term
- Get semantic information
- Find related concepts and properties
Input Schema
Name | Required | Description | Default |
---|---|---|---|
language | No | en | |
limit_results | No | ||
target_language | No | ||
term | Yes | ||
verbose | No |
Input Schema (JSON Schema)
{
"properties": {
"language": {
"default": "en",
"title": "Language",
"type": "string"
},
"limit_results": {
"default": false,
"title": "Limit Results",
"type": "boolean"
},
"target_language": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Target Language"
},
"term": {
"title": "Term",
"type": "string"
},
"verbose": {
"default": false,
"title": "Verbose",
"type": "boolean"
}
},
"required": [
"term"
],
"type": "object"
}