Flowcore Platform MCP Server
@flowcore-io
MCP server for managing and interacting with Flowcore Platform
Overview
What is Flowcore Platform MCP Server?
A Model Context Protocol (MCP) server for managing and interacting with the Flowcore Platform. It provides a standardized interface that allows AI assistants to query and manage Flowcore resources through a structured API. The server is built with Bun and can be run via npx or globally installed.
How to use Flowcore Platform MCP Server?
Run directly using npx without installation: npx @flowcore/platform-mcp-server --username <username> --pat <pat>. Alternatively, install globally with npm install -g @flowcore/platform-mcp-server and then run platform-mcp-server --username <username> --pat <pat>. Replace <username> and <pat> with your Flowcore username and Personal Access Token. Environment variables USERNAME and PAT can also be used instead of command-line arguments.
Key features of Flowcore Platform MCP Server
- Standardized MCP interface for Flowcore Platform resources
- Run without installation using npx
- Supports both command-line arguments and environment variables
- Built with Bun for fast JavaScript runtime
- Open source with community support via Discord
Use cases of Flowcore Platform MCP Server
- AI assistants querying Flowcore platform data securely
- Automating management of Flowcore resources via MCP
- Integrating Flowcore with other MCP-compatible tools
- Reducing hallucinations and token usage with the optional local read model add-on
FAQ from Flowcore Platform MCP Server
What are the required credentials to run the server?
You need your Flowcore username and a Personal Access Token (PAT). These can be passed as --username and --pat arguments or set as environment variables USERNAME and PAT.
How can I run the server without installing it?
Use npx @flowcore/platform-mcp-server --username <username> --pat <pat> to execute the server directly without any installation.
Is there an alternative for better performance and lower token usage?
Yes, the README recommends checking out the local read model MCP server to reduce hallucinations, token usage, and speed up querying, especially when handling large amounts of data.
Where can I get help or ask questions?
Join the Flowcore Discord community at https://discord.gg/4fmSaR4wFR for questions and ideas. A demonstration video is also available on YouTube.
What runtime does the server require?
The server is built and tested with Bun (v1.2.3 or later). For development, you need Bun installed; for production use, you can run via npx or the built Node.js compatible output.