Notebooks

list_notebooks

List all notebooks that have been used via use_notebook tool

List all notebooks that have been used via use_notebook tool

read-only: yes

Parameters

This tool takes no parameters.

Output

{
  "properties": {
    "result": {
      "description": "TSV formatted table with notebook information",
      "title": "Result",
      "type": "string"
    }
  },
  "required": [
    "result"
  ],
  "title": "list_notebooksOutput",
  "type": "object"
}

Call it

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "list_notebooks",
    "arguments": {}
  }
}
result = await session.call_tool("list_notebooks", arguments={})

Source

Registered by the @mcp.tool decorator on list_notebooks in jupyter_mcp_server/server.py.