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.
What command is used in the terminal to run the MCP server?	`mcp dev` followed by the name of the server file (e.g., `mcpserver.py`).
How is the MCP server accessed for testing?	By opening the direct address provided in the terminal within a web browser.
What is the function of the "Connect" button in the MCP Inspector?	To start the MCP server that was defined in the server file.
How do you begin testing a specific tool within the MCP Inspector?	By navigating to the Tools section and manually invoking the desired tool.
What specific input is required to use the `read doc contents` tool?	A Document ID.
What three pieces of information are required to use the `edit document` tool?	The Document ID, the old string to replace, and the new replacement string.
What is the verification process after using the `edit document` tool?	Running the `read doc contents` tool again with the same Document ID.
What prerequisite must be confirmed in the terminal before running the server?	That the Python environment is properly activated.
