@flowthingsapp/mcp-server
v1.0.1
Published
MCP server for Flowthings integration with MCP-compatible applications
Maintainers
Readme
@flowthings/mcp-server
MCP (Model Context Protocol) server for Flowthings integration with MCP-compatible AI applications.
Overview
This package provides a MCP server that allows MCP-compatible AI applications (such as Claude Desktop, and others) to interact with your Flowthings workspace, enabling you to:
- Create and read flows
- Create and read pages
- Access workspace projects
- Browse collections
- Get workspace information
Installation
This package is designed to be used with npx for automatic installation and execution:
npx @flowthings/mcp-serverConfiguration
Add this configuration to your MCP-compatible application's config file:
Claude Desktop
For Claude Desktop, add to your claude_desktop_config.json:
{
"mcpServers": {
"flowthings": {
"command": "npx",
"args": ["-y", "@flowthings/mcp-server"],
"env": {
"FLOWTHINGS_TOKEN": "your-api-token-here",
"FLOWTHINGS_URL": "https://integrations.flowthings.app"
}
}
}
}Other MCP Applications
For other MCP-compatible applications, refer to their documentation for the specific configuration format. The general pattern is:
- Command:
npx - Arguments:
["-y", "@flowthings/mcp-server"] - Environment Variables: See below
Environment Variables
FLOWTHINGS_TOKEN: Your Flowthings API token (required)FLOWTHINGS_URL: Flowthings API base URL (defaults to https://integrations.flowthings.app)
Getting Your API Token
- Go to your Flowthings workspace settings
- Navigate to Integrations
- Click "Connect" on the MCP integration
- Copy the generated configuration
Requirements
- Node.js 16.0.0 or higher
- A valid Flowthings workspace and API token
License
MIT
Support
For support, please visit Flowthings Help Center or create an issue in the GitHub repository.
