omgflux-mcp-server

omgflux-mcp-server

2

Omg Flux MCP is a server application designed to work with Node.js. It requires version 18.0.0 or higher and involves steps to clone the repository, install dependencies, and build the project. The server can be configured with specific commands and environment variables.

Omg Flux MCP

You can verify your Node.js installation by running:

node --version  # Should show v18.0.0 or higher

Installation

  1. Clone the repository:
git clone https://github.com/XXpE3/omgflux-mcp-server.git && cd omgflux-mcp-server
  1. Install dependencies:
npm install
  1. Build the project:
npm run build

Configuration

{
  "mcpServers": {
    "omgflux-mcp": {
      "command": "node",
      "args": ["/path/to/omgflux-mcp-server/build/index.js"],
      "env": {
        "OHMYGPT_API_KEY": "your-api-key-here"
      }
    }
  }
}