Skip the install. Get this working in under 2 minutes.
Start a free trial on cloud.anythingmcp.com, add the Directus in one click, then point your AI client (Claude, ChatGPT, Copilot or Cursor) at the generated MCP endpoint. No Docker, no git clone, zero engineering experience required.
Summary
Connect to a Directus instance (self-hosted or Directus Cloud) to discover collections and fields, query items, and retrieve individual records through the read-only REST API.
Try asking
Example prompts for Directus
Click any prompt to copy it. Paste into Claude, ChatGPT, Cursor, Gemini, Copilot or OpenClaw to run it against this connector.
Claude is AI and can make mistakes. Please double-check responses.
💡 No install? Use cloud.anythingmcp.com directly. Sign in, click Connectors → Directus, paste your credentials, mint an MCP API key — done. No Docker, no
git clone, no local server.
Directus + Cursor
Connect to a Directus instance (self-hosted or Directus Cloud) to discover collections and fields, query items, and retrieve individual records through the read-only REST API.
Prerequisites
See the full setup instructions baked into the connector (visible in the in-app store when you select the connector). The required environment variables for this connector are:
DIRECTUS_URL, DIRECTUS_TOKEN
Step 1 — Get credentials
Set DIRECTUS_URL to the root URL of your Directus instance, for example https://directus.example.com. Directus Cloud and any other publicly reachable instance work as they are. A self-hosted instance on a private network or a private IP address must also be allowed through SSRF_ALLOWED_HOSTS, because the outbound guard blocks private address space by default. Set DIRECTUS_TOKEN to a Directus user's static access token; it is sent using the Authorization Bearer header and must never be placed in the query string. This adapter is read-only. Use directus_list_collections to discover available collections and directus_list_fields before constructing filters. …
Step 2 — Install the adapter
curl -fsSL https://raw.githubusercontent.com/HelpCode-ai/anythingmcp/main/docker-compose.quickstart.yml -o docker-compose.yml
printf 'JWT_SECRET=%s\nENCRYPTION_KEY=%s\n' "$(openssl rand -hex 32)" "$(openssl rand -hex 32)" > .env
docker compose up -d
Step 3 — Add the connector in Cursor
Cursor reads MCP servers from ~/.cursor/mcp.json. Add this entry:
{
"mcpServers": {
"anythingmcp": {
"url": "https://cloud.anythingmcp.com/mcp",
"headers": { "X-API-Key": "YOUR_MCP_API_KEY" }
}
}
}
- Get your MCP API key from AnythingMCP → MCP Servers → your server → API keys.
- Save the file and restart Cursor.
- Open Cursor → Settings → MCP to verify
Directusis listed and "Connected". - Start chatting — all
Directustools are now invokable.
Available tools
| Tool | What it does |
|---|---|
directus_list_collections | List the collections visible to the configured Directus token |
directus_list_fields | List the fields defined in a Directus collection |
directus_list_items | List, filter, search, sort, paginate, or aggregate items in a Directus collection |
directus_get_item | Retrieve one item from a Directus collection by its primary key |
directus_server_info | Retrieve information about the connected Directus server |
FAQ
Does Cursor support custom MCP servers on the free tier? Yes — MCP is available on Hobby, Pro and Business plans.
Next steps
Was this guide helpful?