A Model Context Protocol (MCP) server for managing and interacting with the Flowcore Platform. If you're curious about how it works, you can check out our video, where we set it up and demonstrate what it can do. You can run this package directly using npx without installing it: Replace and with your Flowcore username and PAT (Personal Access Token). If you prefer to install the package globally:
Add this skill
npx mdskills install flowcore-io/mcp-flowcore-platformProvides setup instructions but lacks any detail on available tools or capabilities
1# Flowcore Platform MCP Server23A Model Context Protocol (MCP) server for managing and interacting with the Flowcore Platform.45If you're curious about how it works, you can [check out our video](https://www.youtube.com/watch?v=Wh4h_n7IlTw), where we set it up and demonstrate what it can do.67> If you like this solution, but would like to reduce the hallucinations, reduce token usage, increase the amount of data you can look through and also speed up querying exponentially - then we recommend you also [check out our local read model mcp server](https://github.com/flowcore-io/mcp-flowcore-local-readmodel),89## Usage with npx1011You can run this package directly using npx without installing it:1213```bash14npx @flowcore/platform-mcp-server --username <username> --pat <pat>15```1617Replace `<username>` and `<pat>` with your Flowcore username and PAT (Personal Access Token).1819## Installation2021If you prefer to install the package globally:2223```bash24npm install -g @flowcore/platform-mcp-server25```2627Then run it:2829```bash30platform-mcp-server --username <username> --pat <pat>31```3233## Development3435To install dependencies:3637```bash38bun install39```4041Run the project directly with Bun:4243```bash44bun run src/index.ts --username <username> --pat <pat>45```4647## Building4849Build the project:5051```bash52bun run build53```5455Run the built project:5657```bash58node dist/cli.js --username <username> --pat <pat>59```6061## Environment Variables6263| Variable | Type | Description | Default | Required |64|----------|------|-------------|---------|----------|65| USERNAME | string | Flowcore username | - | ✓ |66| PAT | string | Flowcore PAT (Personal Access Token) | - | ✓ |6768## About6970This project uses the Model Context Protocol (MCP) to provide a standardized interface for interacting with the Flowcore Platform. It allows AI assistants to query and manage Flowcore resources through a structured API.7172Originally created using `bun init` in bun v1.2.3. [Bun](https://bun.sh) is a fast all-in-one JavaScript runtime.7374## Questions75if you have any questions or cool ideas, then feel free to [join our Discord community](https://discord.gg/4fmSaR4wFR). Otherwise you can find us on all major social platforms
Full transparency — inspect the skill content before installing.