What functionality does the Python SDK provide for testing an MCP server?	Access to an in-browser debugger (the MCP Inspector).
What command sequence is used to start the MCP server?	Activate the Python environment, then run `mcp dev` followed by the server file name (e.g., `mcpserver.py`).
What information does the terminal provide after successfully running the MCP server?	The port number the server is listening on and a direct access address.
What is the primary purpose of the MCP Inspector?	To allow live development and debugging of an MCP server without wiring it to a real application.
How do you access the list of available tools within the MCP Inspector?	Click the "Connect" button, then navigate to the "Tools" section and select "List Tools."
How do you manually invoke a specific tool in the MCP Inspector?	Select the desired tool, and then use the right-hand panel to input parameters and run it.
What input is required to use the `read doc contents` tool?	A specific Document ID (e.g., `deposition.md`).
If you use the `edit document` tool, how do you verify that the edit was successful?	Run the `read doc contents` tool again using the same Document ID.
