Skip to main content

MCP Prompts

Overview

MCP prompts are pre-configured request templates that guide your AI client to effectively use the platform's tools and resources.

Prerequisites

  • API key with the MCP preset
  • MCP client configured (see Configuration)

Reference

PromptDescriptionArguments
explore-ontologyDiscover and understand an ontology without knowing an identifierquestion (optional)
analyze-ontologyAnalyze the structure of an ontology spaceespaceId (required), focus (optional)
query-ontologyConvert a natural language question into an ontology queryquestion (required), espaceId (required)
create-workflowGuide for designing a new workflowdescription (required), trigger (optional)
search-knowledgeSearch the knowledge base with hybrid searchquery (required), sourceId (optional), maxResults (optional)
invoke-agentGuide for invoking an AI agent with contexttask (required), agentId (optional), context (optional)
analyze-livedataAnalyze a connected data sourcesourceId (required), focus (optional)

explore-ontology

Discovers and explores an ontology without requiring a prior identifier.

Arguments

ArgumentRequiredDescription
questionNoQuestion about the ontology (default: overview)

Example

{
"jsonrpc": "2.0",
"method": "prompts/get",
"params": {
"name": "explore-ontology",
"arguments": {
"question": "Quelles entites sont modelisees ?"
}
},
"id": 1
}

Behavior: The prompt guides the AI client to use ontology_list_espaces then ontology_describe to explore the ontology automatically.


analyze-ontology

Analyzes the structure and relationships of an ontology space.

Arguments

ArgumentRequiredDescription
espaceIdYesIdentifier of the space to analyze
focusNoSpecific aspect (types, relations, properties)

query-ontology

Converts a natural language question into a structured query.

Arguments

ArgumentRequiredDescription
questionYesNatural language question
espaceIdYesTarget ontology space

create-workflow

Guides the design of a new workflow step by step.

Arguments

ArgumentRequiredDescription
descriptionYesDescription of what the workflow should do
triggerNoTrigger type (manual, schedule, webhook)

search-knowledge

Searches the knowledge base with hybrid search.

Arguments

ArgumentRequiredDescription
queryYesQuestion or search terms
sourceIdNoRestrict to a specific source
maxResultsNoMaximum number of results (default: 10)

invoke-agent

Guides the invocation of an AI agent with the necessary context.

Arguments

ArgumentRequiredDescription
taskYesTask description for the agent
agentIdNoIdentifier of a specific agent
contextNoAdditional context

analyze-livedata

Analyzes the health, schema, and quality of a data source.

Arguments

ArgumentRequiredDescription
sourceIdYesIdentifier of the source to analyze
focusNoSpecific aspect (schema, freshness, data quality)

Limitations

  • Prompts are guides -- the AI client may adapt the steps based on context.
  • Some prompts require identifiers obtained through discovery tools.

Need Help?

Contact us: Support and Contact.