├── .env.example ├── .github └── workflows │ └── python-pytest.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── mcp_flowise ├── __init__.py ├── __main__.py ├── server_fastmcp.py ├── server_lowlevel.py └── utils.py ├── pyproject.toml ├── pytest.ini ├── smithery.yaml ├── test_mcp_call_tool_valid.py ├── test_mcp_handshake.py ├── tests ├── README.md ├── fixtures │ └── sample_chatflows.json ├── integration │ ├── test_flowise_integration.py │ ├── test_tool_prediction.py │ └── test_tool_registration_integration.py └── unit │ ├── test_chatflow_filters.py │ └── test_utils.py └── uv.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/mcp-flowise/HEAD/.env.example -------------------------------------------------------------------------------- /.github/workflows/python-pytest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/mcp-flowise/HEAD/.github/workflows/python-pytest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/mcp-flowise/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/mcp-flowise/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/mcp-flowise/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/mcp-flowise/HEAD/README.md -------------------------------------------------------------------------------- /mcp_flowise/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mcp_flowise/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/mcp-flowise/HEAD/mcp_flowise/__main__.py -------------------------------------------------------------------------------- /mcp_flowise/server_fastmcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/mcp-flowise/HEAD/mcp_flowise/server_fastmcp.py -------------------------------------------------------------------------------- /mcp_flowise/server_lowlevel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/mcp-flowise/HEAD/mcp_flowise/server_lowlevel.py -------------------------------------------------------------------------------- /mcp_flowise/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/mcp-flowise/HEAD/mcp_flowise/utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/mcp-flowise/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/mcp-flowise/HEAD/pytest.ini -------------------------------------------------------------------------------- /smithery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/mcp-flowise/HEAD/smithery.yaml -------------------------------------------------------------------------------- /test_mcp_call_tool_valid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/mcp-flowise/HEAD/test_mcp_call_tool_valid.py -------------------------------------------------------------------------------- /test_mcp_handshake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/mcp-flowise/HEAD/test_mcp_handshake.py -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/mcp-flowise/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/fixtures/sample_chatflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/mcp-flowise/HEAD/tests/fixtures/sample_chatflows.json -------------------------------------------------------------------------------- /tests/integration/test_flowise_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/mcp-flowise/HEAD/tests/integration/test_flowise_integration.py -------------------------------------------------------------------------------- /tests/integration/test_tool_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/mcp-flowise/HEAD/tests/integration/test_tool_prediction.py -------------------------------------------------------------------------------- /tests/integration/test_tool_registration_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/mcp-flowise/HEAD/tests/integration/test_tool_registration_integration.py -------------------------------------------------------------------------------- /tests/unit/test_chatflow_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/mcp-flowise/HEAD/tests/unit/test_chatflow_filters.py -------------------------------------------------------------------------------- /tests/unit/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/mcp-flowise/HEAD/tests/unit/test_utils.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/mcp-flowise/HEAD/uv.lock --------------------------------------------------------------------------------