devil-app-builder-mcp
v1.0.0
Published
Devil App Builder MCP Server
Maintainers
Readme
Devil App Builder MCP Server
This is an MCP (Model Context Protocol) server for the Devil App Builder.
Installation
To use this server with Claude Desktop, you can run it directly using npx or install it globally.
Prerequisites
- Node.js (v18 or higher)
- npm
Usage with Claude Desktop
Add the following configuration to your Claude Desktop configuration file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"devil-app-builder": {
"command": "npx",
"args": ["-y", "devil-app-builder-mcp"],
"env": {
"DEVIL_API_KEY": "your_api_key_here"
}
}
}
}Note: Since this package is not yet published to npm under @your-scope/devil-mcp-server, you will need to publish it first or use npm link for local development.
Local Development
- Clone the repository.
- Install dependencies:
npm install - Build the project:
npm run build - Run in development mode (watch changes):
npm run dev - Link the package locally:
npm link - Update your Claude Desktop configuration to use the linked package name or run from source.
For local testing without publishing, you can point directly to the built file:
{
"mcpServers": {
"devil-app-builder": {
"command": "node",
"args": ["/absolute/path/to/devil-app-builder-mcp/build/index.js"],
"env": {
"DEVIL_API_KEY": "your_api_key_here"
}
}
}
}Features
- build_app: A tool to build a new application with a given name and description.
License
ISC
