MCP Server Setup

Instructions on how to setup the Learn Place AI MCP server

MCP Client and Model

Currently the only MCP Client / Model combination that we trust to return the LPAI response untouched in VS Code Insiders (Preview Release) and Gemini 2.5 Pro.

Other models like Claude translate the response from LPAI. This takes away from the power of LPAI as it chooses every word and sentence structure to help you learn and understand as fast as possible.

VS Code Settings Example

    "mcp": {
        "inputs": [],
        "servers": {
            "Learn Place AI": {
                "command": "npx",
                "args": [
                  "mcp-remote",
                  "https://api.learnplace.ai/v1/mcp/sse",
                  "--header",
                  "Authorization: Bearer $(LPAI_API_KEY)"
                ]
              }
        }
    }