DreamFactory
About
Enables AI to interact with databases through DreamFactory's REST API, providing secure, structured access to schemas, data, and stored procedures without direct credential exposure.
Details
- Author
- dreamfactorysoftware
- Repository
- dreamfactorysoftware/df-mcp
- GitHub stars
- 3
- Downloads
- 205
- License
- Apache License 2.0
- Categories
- Developer Tools, AI, Design, Search, Infrastructure, Database, Other
- Tags
- #integration
Jump to
- Connects Claude Desktop to a DreamFactory instance
- Uses the Model Context Protocol (MCP) for communication
- Requires only a DreamFactory URL and API key
- Simple JSON configuration in Claude Desktop settings
- Leverages DreamFactory’s REST API through natural language
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
DreamFactoryCommand (node, npx, python, etc.)nodeArguments-
Argument 1
/Users/dreamfactory/Documents/df-mcp/build/index.js
Environment-
DREAMFACTORY_URL
https://example.dreamfactory.com/api/v2/<service-name> -
DREAMFACTORY_API_KEY
Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
-
Argument 1
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Once configured, the DreamFactory MCP server will be available to Claude Desktop. You can use DreamFactory's capabilities through Claude's interface.
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:

1. Clone this repository and then install dependencies:
cd df-mcp
npm install
3. Build the project:
npm run build
Add this configuration to your Claude Desktop config file:
Location:
- macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
- Windows: %APPDATA%\Claude\claude_desktop_config.json
- Linux: ~/.config/Claude/claude_desktop_config.json
Configuration
{
"mcpServers": {
"dreamfactory-mcp": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--env", "DREAMFACTORY_URL=https://your-dreamfactory-instance.com/api/v2/<service-name>",
"--env", "DREAMFACTORY_API_KEY=your-api-key-here",
"dreamfactory-mcp:latest"
]
}
}
}
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"dreamfactory": {
"env": {
"DREAMFACTORY_URL": "https://example.dreamfactory.com/api/v2/<service-name>",
"DREAMFACTORY_API_KEY": ""
},
"args": [
"/Users/dreamfactory/Documents/df-mcp/build/index.js"
],
"command": "node"
}
}
}
Linux
{
"env": {
"DREAMFACTORY_URL": "<URL>",
"DREAMFACTORY_API_KEY": "<API_KEY>"
},
"args": [
"/Users/wjgilmore/Software/df-mcp/build/index.js"
],
"command": "node"
}
Macos
{
"env": {
"DREAMFACTORY_URL": "https://example.dreamfactory.com/api/v2/<service-name>",
"DREAMFACTORY_API_KEY": ""
},
"args": [
"/Users/dreamfactory/Documents/df-mcp/build/index.js"
],
"command": "node"
}
Windows
{
"env": {
"DREAMFACTORY_URL": "<URL>",
"DREAMFACTORY_API_KEY": "<API_KEY>"
},
"args": [
"/c",
"node",
"/Users/wjgilmore/Software/df-mcp/build/index.js"
],
"command": "cmd"
}
DreamFactory MCP
A Model Context Protocol (MCP) server for DreamFactory integration with Claude.
Overview
DreamFactory is a secure, self-hosted enterprise data access platform that provides governed API access to any data source, connecting enterprise applications and on-prem LLMs with role-based access and identity passthrough.
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
1. Clone this repository and then install dependencies:
cd df-mcp
npm install
3. Build the project:
npm run build
Setting up Claude Desktop
1. Install Claude Desktop from https://claude.ai/download.
2. Open Claude Desktop and navigate to Settings.
3. In the Settings menu, go to the "Developer" section.
4. Click on "Edit Config" to modify Claude's configuration.
5. Add the following configuration to enable the DreamFactory MCP server:
{
"mcpServers": {
"add": {
"command": "node",
"args": [
"/Users/dreamfactory/Documents/df-mcp/build/index.js"
],
"env": {
"DREAMFACTORY_URL": "https://example.dreamfactory.com/api/v2/<service-name>",
"DREAMFACTORY_API_KEY": ""
}
}
}
}
6. Important: Modify the path in the args array to match your local installation path if different from /Users/dreamfactory/Documents/df-mcp/.
7. Add your DreamFactory URL and API key to the DREAMFACTORY_URL DREAMFACTORY_API_KEY environment variables as required.
8. 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:
#!/bin/zsh
source ~/.zshrc
exec /Applications/Herd/config/nvm/versions/node/v22.17.1/bin/node
Call the script node-for-claude.sh or similar, and place it in /usr/local/bin. Then make it executable:
$ chmod +x node-for-claude.sh
Finally, update the claude_desktop_config.json file to point to this script:
{
"mcpServers": {
"df-mcp": {
"command": "/usr/local/bin/node-for-claude.sh",
"args": [
"/Users/wjgilmore/Software/df-mcp/build/index.js"
],
"env": {
"DREAMFACTORY_URL": "<URL>",
"DREAMFACTORY_API_KEY": "<API_KEY>"
}
}
}
}
Usage
Once configured, the DreamFactory MCP server will be available to Claude Desktop. You can use DreamFactory's capabilities through Claude's interface.
Docker MCP Setup for Claude Desktop
Building the Docker Image
docker build -t df-mcp .
Configure Claude Desktop
Add this configuration to your Claude Desktop config file:Location:
- macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
- Windows: %APPDATA%\Claude\claude_desktop_config.json
- Linux: ~/.config/Claude/claude_desktop_config.json
Configuration
{
"mcpServers": {
"dreamfactory-mcp": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--env", "DREAMFACTORY_URL=https://your-dreamfactory-instance.com/api/v2/<service-name>",
"--env", "DREAMFACTORY_API_KEY=your-api-key-here",
"dreamfactory-mcp:latest"
]
}
}
}
Restart Claude Desktop
After updating the configuration, restart Claude Desktop to load the MCP server.Testing the Docker Container
Run the included test script to validate the Docker setup:
./test-docker.sh
This will verify that the container builds correctly, responds to MCP commands, and all tools are properly registered.
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
Security
Found a security issue? Email us at security@dreamfactory.com.
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.




