Installation
Install the MCP Inspector globally via npm:Connecting to Autype MCP
The Inspector runs outside of Docker and connects to the MCP server via HTTP.Using the hosted server
YOUR_API_KEY with your actual API key from the Dashboard.
Using a self-hosted server
If you’re running the MCP server locally (e.g., via Docker onlocalhost:8000):
The Inspector connects to the MCP server from outside Docker, so use
localhost (not autype-mcp or container names).Using the Inspector
Once connected, the Inspector opens a web interface (usually athttp://localhost:5173) where you can:
- View available tools — See all 17 Autype tools with their parameters and descriptions
- Read resources — Inspect the document schema resources (
autype://schemas/document, etc.) - Test tool calls — Call tools interactively and see the responses
- Debug errors — View detailed error messages and request/response logs
Example workflow
- List tools — Verify all Autype tools are available
- Read schema — Open
autype://schemas/documentto see the full document structure - Test render — Call
render_markdownwith sample content: - Check response — Verify you receive a
downloadUrlin the response
Troubleshooting
Connection refused
If you see “Connection refused” when connecting tolocalhost:8000:
- Verify the MCP server is running:
docker ps | grep autype-mcp - Check the port mapping:
docker port autype-mcp - Ensure you’re using
localhost, not127.0.0.1or0.0.0.0
401 Unauthorized
If you see “401 Unauthorized”:- Verify your API key is correct
- Check the header format:
--header "X-API-Key: YOUR_API_KEY"(with quotes) - Ensure the API key is active in the Dashboard
Tools not showing up
If no tools appear in the Inspector:- Check the MCP server logs:
docker logs autype-mcp - Verify the server is healthy:
curl http://localhost:8000/health - Try reconnecting with the Inspector
