What functionality does the Python SDK provide for testing an MCP server?	Access to an in-browser debugger.
What command is used in the terminal to run the MCP server (e.g., `mcpserver.py`)?	`mcp dev <filename>`
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 start the MCP server within the MCP Inspector interface?	By clicking the "Connect" button on the left-hand side.
Where can you find the list of available tools within the MCP Inspector?	In the top menu bar, by selecting "Tools" and then "List Tools."
How do you manually test a specific tool in the MCP Inspector?	Select the tool, and then use the right-hand panel to invoke it.
What specific input is required to use the "read doc contents" tool?	A Document ID.
What information is required to use the "edit document" tool?	A Document ID, the old string, and the new string.
How can you verify that an edit performed by the "edit document" tool was successful?	By running the "read doc contents" tool again with the same Document ID.
