Stdio-based MCP servers communicate through standard input/output (stdin/stdout) rather than HTTP endpoints. This approach is particularly useful for local development, testing, and scenarios where direct process communication is preferred.
Complete setup for the Notion MCP server with proxy:
Local Development
Copy
Ask AI
# Install Notion MCP servernpm install -g @notionhq/notion-mcp-server# Run directly as stdio server (for testing)@notionhq/notion-mcp-server# Run with proxy for HTTP accessmcp-proxy --port 8000 --host 0.0.0.0 --server stream @notionhq/notion-mcp-server