Listable MCP Server

MCP server for Listable — let Claude, Cursor, and other AI assistants manage your directory site

Remote serverstreamable-http

What is the Listable MCP MCP server?

MCP server for Listable — let Claude, Cursor, and other AI assistants manage your directory site. That is what the listable mcp mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The tools it exposes

The server publishes 14 tools. What each one is for:

  • Name — listable
  • URLhttps://app.get-listable.com/api/v1/external/mcp
  • Listablehttps://get-listable.com
  • Group — Tools
  • Projects — list, get, schema discovery
  • Categories — full CRUD, category trees, conflict inspection
  • Forms — list, get, create, update, delete; manage form fields
  • Settings — menu, scripts, SEO, URL structure, theme
  • Redirects — full CRUD
  • Uploads — upload images / files for use in listings and pages
  • Setup — Paste a URL
  • LISTABLE_API_TOKEN — yes

Getting it running

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

What it needs from you

Configuration is passed through the environment: LISTABLE_API_TOKEN, LISTABLE_MCP_URL. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

How it compares

Plenty of file and storage access servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Listable MCP's toolset — Name, URL, Listable and 11 more — is a fair guide to whether it matches your workflow. It is maintained by johnrich85; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Things to watch

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Listable MCP.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
Namelistable
URLhttps://app.get-listable.com/api/v1/external/mcp
Listable<https://get-listable.com>
GroupTools
Projectslist, get, schema discovery
Categoriesfull CRUD, category trees, conflict inspection
Formslist, get, create, update, delete; manage form fields
Settingsmenu, scripts, SEO, URL structure, theme
Redirectsfull CRUD
Uploadsupload images / files for use in listings and pages
SetupPaste a URL
LISTABLE_API_TOKENyes
LISTABLE_MCP_URLno
CursorThe Cursor tool exposed by this server.

How to install the Listable MCP MCP server

{
  "mcpServers": {
    "listable": {
      "command": "npx",
      "args": ["-y", "listable-mcp"],
      "env": {
        "LISTABLE_API_TOKEN": "your-value",
        "LISTABLE_MCP_URL": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
LISTABLE_API_TOKENCredential the server authenticates with.Yes
LISTABLE_MCP_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Listable MCP to Name.
  • Use Listable MCP to URL.
  • Use Listable MCP to Listable.

Frequently asked questions

It connects Listable MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (Name, URL, Listable, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Listable MCP directly.