Marketplace

Flowleap

co.flowleap/flowleap · v0.3.4

FlowLeap Patent AI over MCP: EPO/USPTO search, query building, literature, citations, and OCR.

Install

Open this server in FlowLeap's marketplace to install it in a couple of clicks, or paste the config below into any MCP client.

New to the marketplace? See how installing works.

Runs as

npx · npm · flowleap@0.3.4

Repository

abdullahatrash/flowleap-cli

Website

www.flowleap.co

What it needs from you

  • FLOWLEAP_API_KEYOptionalSecret

    FlowLeap personal API token (fl_pat_…). Required for patent-data tools; without it the server starts but data calls return a login hint. Create one with `flowleap auth create-token`.

  • FLOWLEAP_EPO_KEYOptionalSecret

    Your EPO Open Patent Services (OPS) consumer key (free signup). Needed for direct EPO OPS document tools.

  • FLOWLEAP_EPO_SECRETOptionalSecret

    Your EPO OPS consumer secret, paired with FLOWLEAP_EPO_KEY.

  • FLOWLEAP_USPTO_KEYOptionalSecret

    Your USPTO Open Data Portal (ODP) API key (free signup). Needed for USPTO search and continuity tools.

Manual config

Add this to your MCP client's config (e.g. an mcp.json or the client's mcpServers block), filling in any placeholders.

mcpServers
{
  "mcpServers": {
    "flowleap": {
      "command": "npx",
      "args": [
        "flowleap",
        "mcp"
      ],
      "env": {
        "FLOWLEAP_API_KEY": "<FLOWLEAP_API_KEY>",
        "FLOWLEAP_EPO_KEY": "<FLOWLEAP_EPO_KEY>",
        "FLOWLEAP_EPO_SECRET": "<FLOWLEAP_EPO_SECRET>",
        "FLOWLEAP_USPTO_KEY": "<FLOWLEAP_USPTO_KEY>"
      }
    }
  }
}