mcp_instruct_onboarding
Set up your personal profile and configure AI agents to maintain long-term memory and context across sessions.
Instructions
Start the MCP Instruct onboarding process - sets up personal profile and AI agent
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | No | Onboarding action to perform | start |
data | No | Optional data for quick setup |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"default": "start",
"description": "Onboarding action to perform",
"enum": [
"start",
"check_status",
"quick_setup"
],
"type": "string"
},
"data": {
"description": "Optional data for quick setup",
"properties": {
"name": {
"type": "string"
},
"preferredAgent": {
"type": "string"
},
"role": {
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
}