Neon has released a remote MCP (Model Context Protocol) server that allows AI agents to manage Neon Postgres resources via natural language without requiring local installation or manual API key management. The post details the technical implementation: Server-Sent Events (SSE) over HTTP for bi-directional communication between AI clients and the server, and an OAuth 2.1 authorization flow where the MCP server acts as both an OAuth client (to Neon) and an OAuth server (to MCP clients). The architecture uses Express.js, the mcp-remote package to bridge stdio-based clients, PKCE for security, and Keyv for persistent token storage. The server is deployed on Fly.io at mcp.neon.tech. Known limitations include a Node.js dependency via mcp-remote and occasional OAuth refresh token handling issues in MCP clients.