DreamFactory MCP
A Model Context Protocol (MCP) server for DreamFactory integration with Claude.
Desktop Extension Installation (Claude Desktop Only)
The easiest way to start using DreamFactory's MCP Server is by going to this repository's releases and downloading the most recent Desktop Extension file. Desktop Extensions are a new file format created by Anthropic (the company behind Claude.ai). Once downloaded, double-click the DXT file to start installation. Note you'll need to install Claude Desktop before doing so. After starting installation you'll see this prompt:
Click the Install
button and you'll see:
Click Install
and if all goes well you'll be prompted to input a DreamFactory API key and service URL:
If you don't have this information readily available, just click Cancel
. You can add it later by clicking on the Extensions tab inside Settings and then clicking Configure
:
In either case, before you can use the DreamFactory MCP Server you'll need to manually enable it by flipping the Disabled switch to Enabled:
Manual Installation
- Clone this repository and then install dependencies:
- Build the project:
Setting up Claude Desktop
- Install Claude Desktop from https://claude.ai/download.
- Open Claude Desktop and navigate to Settings.
- In the Settings menu, go to the "Developer" section.
- Click on "Edit Config" to modify Claude's configuration.
- Add the following configuration to enable the DreamFactory MCP server:
- Important: Modify the path in the
args
array to match your local installation path if different from/Users/dreamfactory/Documents/df-mcp/
. - Add your DreamFactory URL and API key to the
DREAMFACTORY_URL
DREAMFACTORY_API_KEY
environment variables as required. - Save the configuration and restart Claude Desktop.
Note About Claude Desktop, NodeJS and NVM
DreamFactory MCP requires Node 22.10.0 or newer. Even if you are running Node 22.10 or newer, you may encounter a confusing issue if you're running NVM (Node Version Manager) which hampers installation. Sometimes these issues are further complicated if you're additionally using other developer tools such as Laravel Herd which make additional changes to Node paths.
If the MCP server log indicates the wrong version of Node is being used by Claude Desktop, you can easily force it to use the desired version by creating a shell script that looks something like this:
Call the script node-for-claude.sh
or similar, and place it in /usr/local/bin
. Then make it executable:
Finally, update the claude_desktop_config.json
file to point to this script:
Usage
Once configured, the DreamFactory MCP server will be available to Claude Desktop. You can use DreamFactory's capabilities through Claude's interface.
Development
- Source code is located in the
src
directory - Built files are in the
build
directory - Use
npm start
to run the built server directly
This server cannot be installed
local-only server
The server can only run on the client's local machine because it depends on local resources.
DreamFactory MCP Server enables AI assistants like Claude to directly query your databases through DreamFactory's auto-generated REST APIs. This Node.js server implements the Model Context Protocol (MCP), allowing natural language database interactions while maintaining enterprise-grade security.
Related MCP Servers
- -securityAlicense-qualityAn MCP server that allows AI assistants to interact with Foundry datasets, ontology objects, and functions through natural language queries and commands.Last updated -8PythonMIT License
- AsecurityFlicenseAqualityMCP server that allows Claude AI to interact directly with MySQL databases, enabling query execution and table information retrieval through natural language.Last updated -114JavaScript
- AsecurityAlicenseAqualityAn open-source MCP server that connects to various data sources (SQL databases, CSV, Parquet files), allowing AI models to execute SQL queries and generate data visualizations for analytics and business intelligence.Last updated -1050PythonMIT License
- AsecurityFlicenseAqualityAn all-in-one Model Context Protocol (MCP) server that connects your coding AI to numerous databases, data warehouses, data pipelines, and cloud services, streamlining development workflow through seamless integrations.Last updated -2Python