Skip to main content
ClaudeWave
MCP ServersOfficial Registry0 stars0 forksTypeScriptMITUpdated today
ClaudeWave Trust Score
77/100
Trusted
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Documented (README)
Flags
  • !No description
Last scanned: 9/3/2026
Install in Claude Code / Claude Desktop
Method: Manual
Claude Code CLI
git clone https://github.com/bea-technology/roxyon-devtools
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "roxyon-devtools": {
      "command": "node",
      "args": ["/path/to/roxyon-devtools/dist/index.js"],
      "env": {
        "ROXYON_TOKEN": "<roxyon_token>"
      }
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Clone https://github.com/bea-technology/roxyon-devtools and follow its README for install instructions.
Detected environment variables
ROXYON_TOKEN
Use cases

MCP Servers overview

# roxyon-devtools

Tooling that lets a developer — or an AI assistant acting for one — build with
**LumenJS**, use the **Roxyon BaaS**, and **deploy to Roxyon infrastructure**
from anywhere.

| Package | What it is | Status |
|---|---|---|
| [`@roxyon/api-client`](packages/api-client) | Typed client for the Roxyon BaaS (`RX` engine) + the Applications/Sites deploy endpoints | **M1** |
| [`@roxyon/deploy-core`](packages/deploy-core) | Shared deploy pipeline — project detection, archiving, build/upload/poll orchestration | **M1** |
| [`@roxyon/cli`](packages/cli) | `roxyon` — `login`, `init`, `deploy`, `logs`, `env`, `restart`, `open`, `link` | **M1** |
| [`@roxyon/mcp`](packages/mcp-server) | MCP server (stdio) so Claude Code / Cursor / Gemini CLI / … can drive all of the above | **M2** — stdio done; HTTP+OAuth pending |
| [`backend/`](backend) | The two new console endpoints + node script (`/applications/deploy`, `/sites/deploy`, `app-source-apply.sh`) | written & wired in `_configs`, not synced |
| [`docs/`](docs) | `llms.txt`, BaaS OpenAPI 3.1, `AGENTS.md` template, distribution checklist | **M3** — drafted |
| [`create-roxyon-app`](packages/create-roxyon-app) | `npm create roxyon-app` — LumenJS / Node templates, emits `AGENTS.md` + `roxyon.json` + `llms.txt` + editor rules | **M4** |
| [`integrations/`](integrations) | Per-assistant wrappers — Claude Code plugin, ChatGPT GPT, Cursor/etc. install snippets | **M5** |

See [`docs/roadmap.md`](docs/roadmap.md) for the full plan.

## Quick start

```bash
npm create roxyon-app@latest my-app     # LumenJS or Node, wired for deploy
cd my-app
npm i -g @roxyon/cli && roxyon login
roxyon deploy                            # builds + uploads + waits for it to go live
```

Existing project instead of a new one: `roxyon init` writes `roxyon.json`, then
`roxyon deploy`.

CI (no interactive login) — create a token once, then use it as `ROXYON_TOKEN`:

```bash
roxyon token create ci --scopes deploy,logs      # prints roxp_… once
ROXYON_TOKEN=roxp_xxx roxyon deploy --no-follow   # first run also creates the app
```

From an AI assistant — add the MCP server to the client:

```json
{ "mcpServers": { "roxyon": { "command": "npx", "args": ["-y", "@roxyon/mcp"] } } }
```

then the assistant calls `roxyon_init` and `roxyon_deploy`. See
[`packages/mcp-server`](packages/mcp-server).

## Develop

```bash
corepack enable pnpm
pnpm install
pnpm build        # all packages
pnpm test
pnpm typecheck
pnpm lint
```

Node ≥ 20. The repo is a pnpm workspace; `tsup` builds each package, `vitest`
tests, `biome` lints + formats, `changesets` versions releases.

## How deploy works

- **LumenJS / static** (`runtime: "lumen"`, `kind: "static"`): `roxyon deploy`
  runs `lm build --serverless`, tars `dist/`, and `POST`s it to `/sites/deploy`,
  which extracts it into the host's document root. Served directly by nginx.
- **Node / Python / PHP** (`kind: "app"`): the tarball goes to
  `/applications/deploy`, which lands it in the application's `SourcePath` and
  bumps `ConfigRevision`. The existing reconciler builds it in an isolated
  release dir and runs it under a systemd unit. Git remotes connected with
  `roxyon link` auto-deploy on push via the existing webhook.

Authentication is a Roxyon **session token** today (stored `0600` in
`~/.roxyon/config.json`); scoped **Personal Access Tokens** land in M1.5.

What people ask about roxyon-devtools

What is bea-technology/roxyon-devtools?

+

bea-technology/roxyon-devtools is mcp servers for the Claude AI ecosystem with 0 GitHub stars.

How do I install roxyon-devtools?

+

You can install roxyon-devtools by cloning the repository (https://github.com/bea-technology/roxyon-devtools) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is bea-technology/roxyon-devtools safe to use?

+

Our security agent has analyzed bea-technology/roxyon-devtools and assigned a Trust Score of 77/100 (tier: Trusted). See the full breakdown of passed checks and flags on this page.

Who maintains bea-technology/roxyon-devtools?

+

bea-technology/roxyon-devtools is maintained by bea-technology. The last recorded GitHub activity is dated 2026-09-02, with 0 open issues.

Are there alternatives to roxyon-devtools?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy roxyon-devtools to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: bea-technology/roxyon-devtools
[![Featured on ClaudeWave](https://claudewave.com/api/badge/bea-technology-roxyon-devtools)](https://claudewave.com/repo/bea-technology-roxyon-devtools)
<a href="https://claudewave.com/repo/bea-technology-roxyon-devtools"><img src="https://claudewave.com/api/badge/bea-technology-roxyon-devtools" alt="Featured on ClaudeWave: bea-technology/roxyon-devtools" width="320" height="64" /></a>

More MCP Servers

roxyon-devtools alternatives