Skip to main content
Glama

list_sessions

View all active terminal sessions managed by Desktop Commander MCP to monitor and manage running processes on your computer.

Instructions

List all active terminal sessions.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The main handler function for the list_sessions tool. It retrieves active terminal sessions from terminalManager and formats a response listing their PID, blocked status, and runtime.
    export async function listSessions() { const sessions = terminalManager.listActiveSessions(); return { content: [{ type: "text", text: sessions.length === 0 ? 'No active sessions' : sessions.map(s => `PID: ${s.pid}, Blocked: ${s.isBlocked}, Runtime: ${Math.round(s.runtime / 1000)}s` ).join('\n') }], }; }
  • Zod schema defining the input arguments for list_sessions, which requires no parameters.
    export const ListSessionsArgsSchema = z.object({});
  • src/server.ts:78-83 (registration)
    Tool registration in the MCP server's listTools response, defining the name, description, and input schema for list_sessions.
    { name: "list_sessions", description: "List all active terminal sessions.", inputSchema: zodToJsonSchema(ListSessionsArgsSchema), },
  • src/server.ts:228-229 (registration)
    Dispatch logic in the CallToolRequest handler that routes list_sessions calls to the listSessions function.
    case "list_sessions": return listSessions();

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/MrGNSS/ClaudeDesktopCommander'

If you have feedback or need assistance with the MCP directory API, please join our Discord server