manifest.json•1 kB
{
"dxt_version": "0.1",
"name": "df-mcp-extension",
"version": "1.0.0",
"description": "DreamFactory MCP Server extension",
"author": {
"name": "DreamFactory Team"
},
"server": {
"type": "node",
"entry_point": "build/index.js",
"mcp_config": {
"command": "node",
"args": [
"${__dirname}/build/index.js"
],
"env": {
"DREAMFACTORY_API_KEY": "${user_config.api_key}",
"DREAMFACTORY_URL": "${user_config.api_url}"
}
}
},
"user_config": {
"api_key": {
"type": "string",
"title": "API Key",
"description": "Your API key for authentication",
"sensitive": true,
"required": true
},
"api_url": {
"type": "string",
"title": "API URL",
"description": "Your API URL for authentication",
"sensitive": false,
"required": true
}
}
}