Skip to content

Cursor Configuration

MCP Server Prerequisites

Before you can configure Cursor to use the Flowcore MCP Server, you need to have the following prerequisites:

  • A Flowcore Personal Access Token (PAT)
  • A Flowcore API Key (for MCP ingestion, this is optional but recommended)

Flowcore Personal Access Token (PAT)

To create a Flowcore Personal Access Token (PAT), you can run the following CLI command:

Terminal window
flowcore auth new pat <name you want to give to the token>

Flowcore API Key

To create a Flowcore API Key, you can run the following CLI command:

Terminal window
flowcore auth new key -t <tenant> <name you want to give to the api key>

Flowcore Platform MCP Server configuration

To configure the Flowcore Platform MCP Server via a file based configuration, you can create the following .cursor/mcp.json file for a specific project or globally at ~/.cursor/mcp.json for all projects:

{
"mcpServers": {
"flowcore": {
"name": "Flowcore MCP Server",
"command": "npx",
"args": [
"-y",
"@flowcore/platform-mcp-server@latest",
"--username",
"<your-flowcore-username>",
"--pat",
"<your-flowcore-personal-access-token>",
]
}
}
}

Flowcore Read Model MCP Server configuration

To configure the Flowcore Read Model MCP Server via a file based configuration, you can create the following .cursor/mcp.json file for a specific project or globally at ~/.cursor/mcp.json for all projects:

{
"mcpServers": {
"flowcore-local-read-model": {
"name": "Flowcore Local Read Model",
"command": "npx",
"args": [
"-y",
"@flowcore/local-read-model-mcp-server@latest",
"--username",
"<your-flowcore-username>",
"--pat",
"<your-flowcore-personal-access-token>",
]
}
}
}

Enabling Ingestion for a specific project

To enable ingestion through the MCP Server for a specific project, you can follow the steps below.

you need to use this configuration in the project’s mcp.json file:

{
"mcpServers": {
"flowcore": {
"name": "Flowcore MCP Server",
"command": "npx",
"args": [
"-y",
"@flowcore/platform-mcp-server@latest",
"--username",
"<your-flowcore-username>",
"--pat",
"<your-flowcore-personal-access-token>",
"--apiKey",
"<your-api-key>"
]
}
}
}

You can also use this in the global mcp.json file to enable ingestion for all projects, but it will be limited to the tenant you have created the api key for.