Skip to main content
This page describes, at a high level, how to configure Lexful as an MCP integration.
MCP support for Lexful is currently in preview. The core endpoint is stable, but client-specific setup flows may change and some integrations have not been fully tested yet.
The exact steps depend on your MCP host (for example, a chat interface, IDE, or desktop app), but they all point at the same Lexful MCP endpoint:
https://api.us.lexful.app/mcp/{YOUR_ACCOUNT_ID}
Replace {YOUR_ACCOUNT_ID} with your actual Lexful account ID.

Setup steps

1

Locate your MCP configuration

Open the MCP configuration for your client. This might be:
  • A JSON config file (for example, a desktop app settings file).
  • A settings panel where you can paste a JSON block.
  • A workspace or user settings file in your IDE.
2

Add the Lexful server entry

Add a lexful entry pointing at your MCP endpoint:
{
  "mcpServers": {
    "lexful": {
      "url": "https://api.us.lexful.app/mcp/{YOUR_ACCOUNT_ID}"
    }
  }
}
3

Complete the OAuth flow

After saving your configuration, reconnect or restart your client. On first connection it will open a browser window asking you to authorize Lexful. Approve the request to complete the setup.
See the MCP Examples page for concrete client-specific snippets.