Back to MCP Directory
Flowcore Platform
Model Context Protocol moderate risk

Flowcore Platform

An MCP server for interacting with the Flowcore Platform, enabling AI assistants to manage Flowcore resources via a standardized API using username and PAT.

Connections & Capabilities

Connects To

GitHubDiscord

Capabilities

readwrite

Quickstart

Install

npx @flowcore/platform-mcp-server --username <username> --pat <pat>

Exposed MCP Tools (5)

safe
get_resource

Retrieves a specific resource from the Flowcore Platform.

Read-only operation; no data modification.

safe
list_resources

Lists available resources on the Flowcore Platform.

Read-only operation; no data modification.

moderate
create_resource

Creates a new resource on the Flowcore Platform.

Non-destructive write operation.

high
update_resource

Updates an existing resource on the Flowcore Platform.

Structural modification of existing data.

critical
delete_resource

Deletes a resource from the Flowcore Platform.

Destructive operation; irreversible data loss.

Safety Assessment

This server's safety depends on the security of the PAT and the specific tools exposed through the MCP interface. It's relatively safe for read-only operations, but risky if destructive operations are enabled without proper authorization controls. Ensure PAT is securely stored and rotated regularly.

  • Requires authentication via username and PAT.
  • Provides a structured API for interaction.
  • Access is limited to Flowcore resources.
  • Clear separation of concerns through MCP.
  • Improperly managed PAT could lead to unauthorized access.
  • Potential for data modification or deletion depending on tool capabilities.
  • Exposure to internet if the server is publicly accessible.
  • Lack of explicit RBAC beyond username/PAT.