langflow-mcp-server
langflow-mcp-server
A Model Context Protocol (MCP) server that provides AI assistants with comprehensive access to Langflow workflow automation platform.
Overview
langflow-mcp-server serves as a bridge between Langflow's workflow automation platform and AI models, enabling them to understand and work with Langflow flows effectively.
API Compatibility: This server is built on the Langflow API documentation and supports Langflow API version 1.12.0, the latest stable release. The 1.12.x API family adds headless agentic execution, provider descriptors, project upsert, governance policy endpoints, and a Kubernetes-style readiness probe. Existing A2A, v2 workflow HITL/public execution, and public build lifecycle support remains available.
Versioning: From 4.10.0 onward, the npm minor version mirrors the supported Langflow minor - langflow-mcp-server@4.<langflow_minor>.x targets Langflow 1.<langflow_minor>.x (so 4.12.x targets Langflow 1.12.x, 4.11.x targets Langflow 1.11.x). The patch component is used for fixes within the same Langflow minor.
Consolidated Tools Mode
Consolidated Tools Mode is an architecture that groups the 236 individual tools into 29 action-based meta-tools. This significantly reduces token usage and improves AI assistant context management.
Mode | Tools | Best For |
Standard | 236 tools | Full granular control |
Consolidated | 29 tools | Reduced token usage, better context |
To enable consolidated mode:
LANGFLOW_CONSOLIDATED_TOOLS=trueConsolidated tools:
flow- All flow operations (list, get, create, update, delete, download, upload, replace, expand, batch, public, note_translations)flow_execution- Run flows (run, run_advanced, run_session, webhook, process, predict)flow_version- Flow versions and lifecycle events (list, create, get, delete, activate, get_events, create_event)build- Build operations (start, status, cancel, public build lifecycle, vertices)workflow- Run and manage v2 workflows (run with request-level globals, get_result, stop, plus HITL/public execution)agentic- Agentic assistant + sandbox (assist, assist_stream, assist_run, check_config, execute, get_file, reset_session)folder- Folder management (list, get, create, update, delete, download, upload)project- Project management (list, get, create, update, upsert, delete, download, upload)variable- Variable operations (list, create, update, delete, detect)knowledge_base- Knowledge base management (list, get, delete, bulk_delete, upload, create, preview/list chunks, ingest, cancel_ingest, test_connection, list_connectors, ingest_folder, ingest_connector, metadata_keys, list_runs, get_run)memory- Memory bases (create, list, get, list_sessions, list_messages, update, delete, flush, mismatch, regenerate) — experimental Langflow APIfile- Flow-scoped file operations (list, upload, download, delete, get_image)file_v2- User-scoped v2 files (list, upload, get, rename, delete, delete_all, batch_download, batch_delete)monitor- Monitoring (builds, messages, sessions, transactions, job_queue)trace- Execution traces (list, get, delete, delete_by_flow)model- Models and providers (list, providers, provider descriptors, enabled, default get/set/delete, mapping, validate, options)governance- Langflow 1.12.x provider, catalog, and policy-bundle administrationauthz- RBAC authorization (roles, role assignments, teams, shares, audit, my permissions)user- User management (list, get_current, update, reset_password, create)auth- Authentication (login, auto_login, logout, refresh, api keys, save_store_key)store- Component store (list, get, tags, likes, save_api_key, create, like, update_custom)registration- User registration (get, register)validation- Code/prompt validation (code, prompt)mcp_server- MCP server management (list, get, create, update, delete)mcp_project- MCP project config/install (get/update config, get_installed, install, composer_url)extension- Langflow extensions (reload, events)response- OpenAI-compatible responses (create)system- System info (health, version, logs, pictures, voices, session, webhook_events, health_check, healthz)a2a- A2A (Agent-to-Agent) protocol (list_agents, agent_card, jsonrpc)
It provides structured access to:
Flow Management - Create, read, update, delete, and execute Langflow flows
Flow Execution - Run flows with inputs and trigger webhooks
Build Operations - Compile, validate, and monitor flow builds
Import/Export - Upload and download flows and projects
Organization - Manage folders and projects
Configuration - Manage global variables
Knowledge Bases - Manage RAG document collections
Component Discovery - List all available Langflow components
Quick Start
Prerequisites
Node.js 20 or newer installed on your system
A running Langflow instance
Langflow API key
Installation
# Install from npm
npm install -g langflow-mcp-server
# OR clone the repository
git clone https://github.com/nobrainer-tech/langflow-mcp.git
cd langflow-mcp
# Install dependencies
npm install
# Build the project
npm run build
# Configure environment
cp .env.example .env
# Edit .env with your Langflow instance URL and API keyConfiguration
Edit .env file:
LANGFLOW_BASE_URL=http://localhost:7860
LANGFLOW_API_KEY=your-api-key-here
MCP_MODE=stdio
LOG_LEVEL=infoClaude Desktop Setup
Add to your Claude Desktop config file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
Linux: ~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"langflow": {
"command": "npx",
"args": ["-y", "langflow-mcp-server"],
"env": {
"LANGFLOW_BASE_URL": "http://localhost:7860",
"LANGFLOW_API_KEY": "your-api-key-here",
"LANGFLOW_CONSOLIDATED_TOOLS": "true",
"MCP_MODE": "stdio",
"LOG_LEVEL": "error"
}
}
}
}Alternative (local installation):
{
"mcpServers": {
"langflow": {
"command": "node",
"args": ["/absolute/path/to/langflow-mcp/dist/mcp/index.js"],
"env": {
"LANGFLOW_BASE_URL": "http://localhost:7860",
"LANGFLOW_API_KEY": "your-api-key-here",
"MCP_MODE": "stdio",
"LOG_LEVEL": "error"
}
}
}
}Restart Claude Desktop after updating configuration.
Claude Code, Codex, and other MCP hosts
The server supports both standard MCP transports: local stdio and remote
Streamable HTTP. MCP clients use the same tool and schema surface regardless
of transport. Use stdio when the host can launch a local process; use HTTP
when the server runs as a separately deployed service.
Codex CLI — local stdio
codex mcp add langflow \
--env LANGFLOW_BASE_URL=http://localhost:7860 \
--env LANGFLOW_API_KEY=your-api-key-here \
-- npx -y langflow-mcp-serverClaude Code — local stdio
claude mcp add langflow \
-e LANGFLOW_BASE_URL=http://localhost:7860 \
-e LANGFLOW_API_KEY=your-api-key-here \
-- npx -y langflow-mcp-serverRemote Streamable HTTP
Start the server with an explicit bearer token when binding outside the local
machine. HOST=127.0.0.1 is the secure default; use HOST=0.0.0.0 only with
authentication and a TLS-terminating reverse proxy.
MCP_MODE=http \
HOST=0.0.0.0 \
PORT=3000 \
AUTH_TOKEN=replace-with-a-long-random-token \
LANGFLOW_BASE_URL=https://langflow.example.com \
LANGFLOW_API_KEY=your-api-key-here \
npx -y langflow-mcp-serverThe MCP endpoint is https://your-host.example/mcp; the health endpoint is
https://your-host.example/health. For browser-based callers, set
MCP_ALLOWED_ORIGINS to a comma-separated list of exact HTTPS origins. Wildcard
origins are rejected.
Codex CLI can keep the bearer token in an environment variable:
export LANGFLOW_MCP_TOKEN='set-this-in-your-shell'
codex mcp add langflow-remote \
--url https://your-host.example/mcp \
--bearer-token-env-var LANGFLOW_MCP_TOKENThe environment variable must be present whenever Codex starts or reconnects to this server.
Claude Code accepts the same Streamable HTTP endpoint:
export LANGFLOW_MCP_TOKEN='set-this-in-your-shell'
claude mcp add --transport http --scope user \
--header "Authorization: Bearer ${LANGFLOW_MCP_TOKEN}" \
langflow-remote https://your-host.example/mcpThis stores the header in the Claude MCP configuration; keep that configuration
outside source control. Hosts such as Cloud Code, Gemini
clients, and other MCP-compatible tools can use the same /mcp endpoint when
they support Streamable HTTP; their configuration syntax is host-specific and
has not been claimed as an end-to-end test in this repository.
Docker Deployment
The MCP server can be run in a Docker container for easier deployment and isolation.
Quick Start with Docker
# Clone the repository
git clone https://github.com/nobrainer-tech/langflow-mcp.git
cd langflow-mcp
# Create .env file with your configuration
cp .env.example .env
# Edit .env with your Langflow instance URL and API key
# Build and run with docker-compose
docker-compose up -d
# View logs
docker-compose logs -f
# Stop the server
docker-compose downBuilding Docker Image
# Build the image
docker build -t langflow-mcp-server:latest .
# Run in stdio mode (for Claude Desktop)
docker run -it --rm \
-e LANGFLOW_BASE_URL=http://localhost:7860 \
-e LANGFLOW_API_KEY=your-api-key \
langflow-mcp-server:latest
# Run in HTTP mode (for remote access)
docker run -d \
-p 3000:3000 \
-e MCP_MODE=http \
-e HOST=0.0.0.0 \
-e PORT=3000 \
-e AUTH_TOKEN=your-secure-token \
-e MCP_ALLOWED_ORIGINS=https://your-client.example \
-e LANGFLOW_BASE_URL=http://langflow:7860 \
-e LANGFLOW_API_KEY=your-api-key \
langflow-mcp-server:latestDocker Compose Configuration
The included docker-compose.yml supports both stdio and HTTP modes:
# STDIO mode (default)
environment:
- MCP_MODE=stdio
- LANGFLOW_BASE_URL=http://localhost:7860
- LANGFLOW_API_KEY=your-key
# HTTP mode
environment:
- MCP_MODE=http
- PORT=3000
- AUTH_TOKEN=your-secure-token
- MCP_ALLOWED_ORIGINS=https://your-client.exampleAvailable MCP Tools
Once connected, Claude can use:
Standard mode: 236 individual tools
Consolidated mode: 29 action-based tools (recommended for reduced token usage)
Note: Raw Langflow transport endpoints (
/api/mcp/*) and doc-rendering endpoints (/docs,/redoc,/openapi.json) are intentionally not exposed as tools — they are protocol/transport surfaces, not data operations.
Standard Mode Tools (236 tools)
Flow Management (13 tools)
create_flow- Create a new Langflow flowlist_flows- List all flows with pagination and filteringget_flow- Get details of a specific flow by IDupdate_flow- Update an existing flowdelete_flow- Delete a single flowdelete_flows- Delete multiple flows at oncereplace_flow- Replace a flow's full definitionexpand_flows- Expand flows with embedded component dataupload_flow- Upload a flow from JSON datadownload_flows- Download multiple flows as JSON exportget_basic_examples- Get pre-built example flowsbatch_create_flows- Create multiple flows in one operationget_public_flow- Get a public flow without authentication
Flow Execution (7 tools)
run_flow- Execute a flow with input configuration (supports streaming)run_flow_advanced- Advanced flow execution with full controlrun_flow_session- Execute a flow within a session contexttrigger_webhook- Trigger a flow via webhook endpointget_webhook_events- Get webhook trigger events for a flowprocess_flow- Legacy process endpoint for flowspredict_flow- Legacy predict endpoint for flows
Flow Versions & Events (7 tools)
list_flow_versions- List versions of a flowcreate_flow_version- Create a new flow versionget_flow_version- Get a specific flow versiondelete_flow_version- Delete a flow versionactivate_flow_version- Activate a specific flow versionget_flow_events- Get lifecycle events for a flowcreate_flow_event- Create a lifecycle event for a flow
Build Operations (9 tools)
build_flow- Build/compile a flow and return job_id for async executionget_build_status- Poll build status and events for a specific jobcancel_build- Cancel a running build jobbuild_public_flow- Build a public flow without authenticationget_public_build_events- Get events for a public build jobcancel_public_build- Cancel a public build jobget_task_status- Get status of an async taskbuild_vertices- Get vertex build order for a flowstream_vertex_build- Stream real-time build events for a vertex
Workflows (v2) (7 tools)
run_workflow- Run a v2 workflowget_workflow_result- Get the result of a workflow runstop_workflow- Stop a running workflowlist_pending_workflows- List pending HITL requests for a flowget_workflow_events- Re-attach to a workflow job event streamresume_workflow- Resume a workflow with a request ID and optional decisionrun_public_workflow- Run a public stream-only workflow
Agentic (5 tools)
agentic_assist- Get agentic assistance for a flow componentagentic_assist_stream- Get streaming agentic assistance for a flow componentagentic_assist_run- Run the assistant headlessly and persist flow changesagentic_check_config- Check whether agentic features are configuredagentic_execute- Execute an agentic flow by name
Responses (2 tools)
create_response- Create an OpenAI-compatible responseget_session- Get a response/conversation session
Folder Management (7 tools)
list_folders- List all folders with paginationcreate_folder- Create a new folderget_folder- Get folder details by IDupdate_folder- Update folder name, description, or parentdelete_folder- Delete a folderdownload_folder- Download entire folder as archiveupload_folder- Upload folder from archive
Project Management (8 tools)
list_projects- List all projects with paginationcreate_project- Create a new projectget_project- Get project details by IDupdate_project- Update project name or descriptionupsert_project- Create or update a project at a caller-supplied IDdelete_project- Delete a projectupload_project- Upload a project from JSON datadownload_project- Download a project as JSON export
Variable Management (5 tools)
list_variables- List all global variablescreate_variable- Create a new variableupdate_variable- Update variable propertiesdelete_variable- Delete a variabledetect_variables- Detect variables referenced in a value/template
Knowledge Base Management (11 tools)
list_knowledge_bases- List all available knowledge baseslist_knowledge_bases_detailed- List knowledge bases with detailed metadataget_knowledge_base- Get detailed information about a specific knowledge basecreate_knowledge_base- Create a new knowledge basedelete_knowledge_base- Delete a specific knowledge basebulk_delete_knowledge_bases- Delete multiple knowledge bases at onceupload_knowledge_base- Upload a file to create/update a knowledge basepreview_knowledge_base_chunks- Preview how a document will be chunkedlist_knowledge_base_chunks- List stored chunks for a knowledge baseingest_knowledge_base- Ingest documents into a knowledge basecancel_knowledge_base_ingest- Cancel an in-progress ingest job
File Management (5 tools)
upload_file- Upload a file to a specific flowdownload_file- Download a file from a flowlist_files- List all files in a flowdelete_file- Delete a file from a flowget_file_image- Get an image file from a flow
Files (v2) (8 tools)
list_files_v2- List all user-scoped v2 filesupload_file_v2- Upload a v2 fileget_file_v2- Get v2 file metadata or contentrename_file_v2- Rename a v2 filedelete_file_v2- Delete a v2 filedelete_all_files_v2- Delete all v2 filesbatch_download_files_v2- Download multiple v2 filesbatch_delete_files_v2- Delete multiple v2 files
Component Discovery & Custom Components (3 tools)
list_components- List all available Langflow componentscreate_custom_component- Create a new custom componentupdate_custom_component- Update an existing custom component
Monitoring & Analytics (12 tools)
get_monitor_builds- Get build execution history for a flowget_monitor_messages- Query chat/message history with filteringget_monitor_message- Get details of a specific messageupdate_monitor_message- Update a stored messageget_monitor_sessions- List all chat session IDsget_monitor_session_messages- Get all messages for a sessionmigrate_monitor_session- Migrate messages between sessionsget_monitor_transactions- List transaction logs for a flowdelete_monitor_builds- Delete build history for a flowdelete_monitor_messages- Delete multiple messages by IDdelete_monitor_session_messages- Delete all messages for a sessiondelete_monitor_sessions- Delete chat sessions
Traces (4 tools)
list_traces- List execution traces with filtersget_trace- Get a specific execution tracedelete_trace- Delete a specific tracedelete_traces- Delete all traces for a flow
Shared Messages (5 tools)
get_shared_messages- Get shared messagesget_shared_sessions- Get shared sessionsupdate_shared_message- Update a shared messagemigrate_shared_session- Migrate a shared sessiondelete_shared_session- Delete a shared session
Models & Providers (13 tools)
list_models- List available modelslist_model_providers- List all model providerslist_model_provider_descriptors- List providers with stable IDs and display nameslist_enabled_providers- List enabled providerslist_enabled_models- List enabled modelsset_enabled_models- Enable/disable modelsget_default_model- Get the default model for a typeset_default_model- Set the default model for a typedelete_default_model- Remove the default model for a typeget_provider_variable_mapping- Get provider-to-variable mappingvalidate_model_provider- Validate provider credentialsget_language_model_options- Get language model optionsget_embedding_model_options- Get embedding model options
User Management (5 tools)
list_users- List all users (admin only)get_current_user- Get current authenticated user infoupdate_user- Update user profile informationreset_user_password- Reset password for a user (admin only)create_user- Create a new user (admin only)
API Key Management (3 tools)
list_api_keys- List all API keys for the usercreate_api_key- Create a new API keydelete_api_key- Delete an API key
Authentication (4 tools)
login- Authenticate with username and passwordauto_login- Auto-login with stored credentialsrefresh_token- Refresh authentication tokenlogout- Logout and invalidate session
Registration (2 tools)
get_registration- Check whether registration is enabledregister_user- Register a new user account
Store & Marketplace (9 tools)
check_store- Check if component store is enabledcheck_store_api_key- Validate a store API keysave_store_api_key- Save a store API keylist_store_components- Browse available components in the storeget_store_component- Get details of a store componentcreate_store_component- Publish a component to the storelike_store_component- Like a store componentlist_store_tags- List all component tags in the storeget_user_likes- Get components liked by user
Validation (2 tools)
validate_code- Validate Python code for custom componentsvalidate_prompt- Validate prompt template syntax
MCP Servers (v2) (5 tools)
list_mcp_servers- List MCP servers registered with Langflowget_mcp_server- Get an MCP server by namecreate_mcp_server- Create an MCP serverupdate_mcp_server- Update an MCP serverdelete_mcp_server- Delete an MCP server
MCP Project Management (5 tools)
get_mcp_project_config- Get MCP config for a projectupdate_mcp_project_config- Update MCP config for a projectget_mcp_project_installed- Get installed MCP clients for a projectinstall_mcp_project- Install MCP for a project into a clientget_mcp_project_composer_url- Get the MCP composer URL for a project
Starter & Templates (1 tool)
list_starter_projects- List available starter templates
Profile & Media (2 tools)
list_profile_pictures- List available profile picturesget_profile_picture- Get a specific profile picture
Integration Tools (1 tool)
list_elevenlabs_voices- List ElevenLabs text-to-speech voices
System & Health (5 tools)
get_version- Get Langflow API version informationhealth_check- Check Langflow instance health statusget_health_check- Get a detailed health-check reportget_healthz- Get the Kubernetes-style readiness reportget_logs- Retrieve system logs (supports streaming)
Authorization / RBAC (23 tools, Langflow 1.10.0)
list_authz_roles,get_authz_role,create_authz_role,update_authz_role,delete_authz_role- Manage roleslist_authz_role_assignments,create_authz_role_assignment,delete_authz_role_assignment- Manage role assignmentslist_authz_teams,get_authz_team,create_authz_team,update_authz_team,delete_authz_team- Manage teamslist_authz_team_members,add_authz_team_member,remove_authz_team_member- Manage team memberslist_authz_shares,get_authz_share,create_authz_share,update_authz_share,delete_authz_share- Manage resource sharesget_authz_audit- Query the authorization audit log (superuser)get_my_permissions- Get the caller's effective permissions
Memory Bases (10 tools, Langflow 1.10.0 — experimental)
create_memory_base,list_memory_bases,get_memory_base- Manage memory baseslist_memory_base_sessions,list_memory_base_messages- Inspect tracked sessions/messagesupdate_memory_base,delete_memory_base- Update/delete a memory baseflush_memory_base,check_memory_base_mismatch,regenerate_memory_base- Lifecycle operations
Knowledge Base Overhaul (7 tools, Langflow 1.10.0)
test_knowledge_base_connection- Test a vector backend connectionlist_knowledge_base_connectors- List available ingestion connectorsingest_knowledge_base_folder,ingest_knowledge_base_connector- Ingest from a server folder or connectorget_knowledge_base_metadata_keys- List distinct metadata keys/valueslist_knowledge_base_runs,get_knowledge_base_run- Inspect ingestion runs
Extensions & Misc (6 tools, Langflow 1.10.0)
reload_extension_bundle- Reload an extension bundle (requires server-side flag)get_extension_events- Poll extension events for the current userget_agentic_file- Read a file from the per-user agentic sandboxreset_agentic_session- Reset agentic session/sandbox stateget_flow_note_translations- Get localized note-node translations for a flowget_job_queue_metrics- Job-queue metrics snapshot (superuser)
Langflow 1.12.x Governance (12 tools)
get_model_provider_policy,replace_model_provider_policy- Read or replace the install-wide approved-provider policyget_catalog_component_policy,replace_catalog_component_policy- Read or replace blocked component keysget_catalog_template_policy,replace_catalog_template_policy- Read or replace blocked template keysget_catalog_policy_usage,get_catalog_policy_usage_flows- Inspect component usage across flowsget_policy_bundle,replace_policy_bundle- Read or atomically replace the combined governance policylist_policy_bundle_history,rollback_policy_bundle- Inspect or roll back policy revisions
Policy replacement operations are superuser-only and use complete sets. Read the current policy revision before writing so optimistic concurrency conflicts are handled explicitly.
The v2 workflow runner (
run_workflow/workflowactionrun) also accepts request-levelglobals, the preferred replacement for the deprecatedX-LANGFLOW-GLOBAL-VAR-*headers.
A2A Protocol (3 tools, Langflow 1.12.x)
list_a2a_agents- List available A2A (Agent-to-Agent) agentsget_a2a_agent_card- Get a flow's A2A agent card (.well-known/agent-card.json)invoke_a2a_jsonrpc- Invoke a flow via the A2A JSON-RPC endpoint (passthrough envelope)
A2A endpoints require server-side enablement (
LANGFLOW_A2A_ENABLED); otherwise requests surface as a thrownFailed to ...error.
v2 Workflow HITL & Public Execution (4 tools, Langflow 1.12.x)
list_pending_workflows- List pending human-in-the-loop requests for a requiredflow_idget_workflow_events- Re-attach to a workflow job event stream by job IDresume_workflow- Resume a paused HITL workflow withrequest_idand an optional decisionrun_public_workflow- Run a public (unauthenticated-eligible) workflow
The
get_workflow_eventsandrun_public_workflowendpoints return server-sent-event streams; the initial payload is captured but streaming is not incrementally surfaced.
External / Trusted-JWT Authentication (Langflow 1.11.x)
Langflow 1.11.x adds external trusted-JWT / JIT-provisioning authentication. This is
controlled entirely by the Langflow server environment and adds no MCP tools:
EXTERNAL_AUTH_ENABLED, EXTERNAL_AUTH_TOKEN_HEADER/EXTERNAL_AUTH_TOKEN_COOKIE,
EXTERNAL_AUTH_JWKS_URL, EXTERNAL_AUTH_ISSUER/EXTERNAL_AUTH_AUDIENCE/EXTERNAL_AUTH_ALGORITHMS,
EXTERNAL_AUTH_*_CLAIM, and EXTERNAL_AUTH_ACCESS_CEILING_*. The MCP client keeps using its
API key / Bearer token as before.
Example Usage
// Create a new flow
create_flow({
name: "My Automation Flow",
description: "A flow that processes data"
})
// List all flows
list_flows({
page: 1,
size: 50
})
// Get flow details
get_flow({
flow_id: "flow-uuid-here"
})
// Update a flow
update_flow({
flow_id: "flow-uuid-here",
name: "Updated Flow Name"
})
// Execute a flow
run_flow({
flow_id_or_name: "my-flow-name",
input_request: {
input_value: "Hello World",
output_type: "chat",
input_type: "chat"
},
stream: false
})
// Trigger via webhook
trigger_webhook({
flow_id_or_name: "my-flow",
input_request: {
input_value: "Process this data"
}
})
// Build a flow (compile/validate)
build_flow({
flow_id: "flow-uuid-here",
log_builds: true,
event_delivery: "polling"
})
// Check build status
get_build_status({
job_id: "job-uuid-from-build",
event_delivery: "polling"
})
// List knowledge bases (RAG)
list_knowledge_bases()
// Get knowledge base details
get_knowledge_base({
kb_name: "my-documents"
})
// Create a folder
create_folder({
name: "My Flows",
description: "Organized flows"
})
// Create a project
create_project({
name: "My Project",
description: "Project description"
})
// Manage variables
create_variable({
name: "API_KEY",
value: "secret-key",
type: "string"
})
// Get basic examples
get_basic_examples()
// List all components
list_components()Development
# Build
npm run build
# Run in development mode
npm run dev
# Run tests
npm test
# Type checking
npm run typecheckProject Structure
langflow-mcp/
├── src/
│ ├── mcp/
│ │ ├── index.ts # MCP server entry point
│ │ ├── http.ts # Streamable HTTP transport
│ │ ├── server.ts # MCP server implementation
│ │ └── tools.ts # Tool definitions
│ ├── services/
│ │ └── langflow-client.ts # Langflow API client
│ ├── types/
│ │ └── index.ts # TypeScript types
│ └── utils/
│ └── logger.ts # Logging utility
├── .env.example # Example configuration
├── package.json
├── tsconfig.json
└── README.mdAttribution
This project is inspired by and follows the structure of n8n-mcp by Romuald Czlonkowski. Special thanks to the n8n-mcp project for the excellent MCP server architecture and implementation patterns.
License
MIT License - see LICENSE for details.
Contributing
Contributions are welcome! Please:
Fork the repository
Create a feature branch
Run tests (
npm test)Submit a pull request
Acknowledgments
Langflow team for the workflow automation platform
Anthropic for the Model Context Protocol
czlonkowski/n8n-mcp for the inspiration and architecture
Built with ❤️ for the Langflow community