Skip to content

Session Tools

Alessio Rocchi edited this page Jan 27, 2026 · 1 revision

Session Tools

4 MCP tools for session management.


Tools

session_start

Create a new session.

Input:

{
  "metadata": {
    "project": "user-auth",
    "goal": "Implement authentication"
  }
}

Output:

{
  "success": true,
  "session": {
    "id": "uuid",
    "status": "active",
    "startedAt": "2026-01-27T..."
  }
}

session_end

End an active session.

Input:

{
  "sessionId": "session-id"
}

session_status

Get session information.

Input:

{
  "sessionId": "session-id"
}

session_active

List all active sessions.

Output:

{
  "sessions": [...],
  "count": 2
}

Related:

Clone this wiki locally