mcp-server-flyder

mcp-server-flyder

MCP Server for Flyder

Streamline-TS

Developer Tools
Visit Server

README

mcp-server-flyder

MCP Server for Flyder

Overview

A Model Context Protocol server for Flyder workflow integration.

Please note that mcp-server-flyder is currently in early development. The functionality and available tools are subject to change as we continue to develop and improve the server.

Tools

  1. list_workflows

    • Get a list of workflows that belong to the user. This returns a dictionary that has workflow names and their IDs.
    • Input:
      • none
    • Returns: A list containing workflow names and their IDs. The IDs can later be used to run a specific workflow.
  2. run_workflow_by_id

    • Run a specific workflow using its ID.
    • Input:
      • workflow_id (int): The ID of the workflow to run.
      • input (str, optional): The input text to be passed to the workflow. If not provided, the default input from the workflow will be used.
    • Returns: An object containing the result of the workflow run.

Configuration

Usage with Claude Desktop

Add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "flyder": {
      "command": "uvx",
      "args": [ 
        "mcp-server-flyder"
      ],
      "env": {
        "FLYDER_EMAIL": "<email used to sign up on Flyder>",
        "FLYDER_API_KEY": "<your Flyder API key>"
      }
    }
  }
}

Debugging

You can use the MCP inspector to debug the server.

cd path/to/repo
npx @modelcontextprotocol/inspector uv run mcp-server-flyder

Development

If you are doing local development, there are two ways to test your changes:

  1. Run the MCP inspector to test your changes. See Debugging for run instructions.

  2. Test using the Claude desktop app. Add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "flyder": {
      "command": "uv",
      "args": [ 
        "--directory",
        "/<path to repo>",
        "run",
        "mcp-server-flyder"
      ],
      "env": {
        "FLYDER_EMAIL": "<email used to sign up on Flyder>",
        "FLYDER_API_KEY": "<your Flyder API key>"
      }
    }
  }
}

License

This MCP server is licensed under the GNU General Public License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the GNU License. For more details, please see the LICENSE file in the project repository.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
MCP Package Docs Server

MCP Package Docs Server

Facilitates LLMs to efficiently access and fetch structured documentation for packages in Go, Python, and NPM, enhancing software development with multi-language support and performance optimization.

Featured
Local
TypeScript
Claude Code MCP

Claude Code MCP

An implementation of Claude Code as a Model Context Protocol server that enables using Claude's software engineering capabilities (code generation, editing, reviewing, and file operations) through the standardized MCP interface.

Featured
Local
JavaScript
@kazuph/mcp-taskmanager

@kazuph/mcp-taskmanager

Model Context Protocol server for Task Management. This allows Claude Desktop (or any MCP client) to manage and execute tasks in a queue-based system.

Featured
Local
JavaScript
Linear MCP Server

Linear MCP Server

Enables interaction with Linear's API for managing issues, teams, and projects programmatically through the Model Context Protocol.

Featured
JavaScript
mermaid-mcp-server

mermaid-mcp-server

A Model Context Protocol (MCP) server that converts Mermaid diagrams to PNG images.

Featured
JavaScript
Jira-Context-MCP

Jira-Context-MCP

MCP server to provide Jira Tickets information to AI coding agents like Cursor

Featured
TypeScript
Linear MCP Server

Linear MCP Server

A Model Context Protocol server that integrates with Linear's issue tracking system, allowing LLMs to create, update, search, and comment on Linear issues through natural language interactions.

Featured
JavaScript
Sequential Thinking MCP Server

Sequential Thinking MCP Server

This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.

Featured
Python