Lumina MCP Server

Unified MCP toolkit for engineering workflows, database connections, and source control

Remote serverstreamable-http

What is the Lumina MCP server?

Most developer tooling work still happens through a UI a human drives. Lumina MCP server moves it into the conversation instead. Unified MCP toolkit for engineering workflows, database connections, and source control.

The short version

Give your AI assistant real developer superpowers. Query databases, automate Git workflows, sync project tickets, and orchestrate full development cycles — all through natural language.

It acts as a secure bridge between your AI agent and the real tools developers use every day:

Getting it running

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

The tools it exposes

The server publishes 14 tools. What each one is for:

  • Prompt — Description
  • running_query — Natural language → MySQL SELECT query with schema auto-detection
  • auditor_query — Full MySQL performance & security audit by a Principal DBA
  • running_pg_query — Natural language → PostgreSQL SELECT query with schema auto-detection
  • auditor_pg_query — Full PostgreSQL performance & security audit by a Principal DBA
  • generate_commit_and_push — Generate a Conventional Commit message, stage files, and push (provider-agnostic — works for GitHub, Gitea, or any git remote)
  • create_github_pr — Create a GitHub Pull Request with auto-generated tech company-style description
  • review_github_pr — Submit a rigorous AI code review directly to a GitHub Pull Request
  • fix_github_pr_review — Fetch PR review comments and automatically apply fixes to the codebase
  • get_github_pr_diff — Download a clean unified diff of any open GitHub PR for automated review
  • reply_to_pr_comment — Reply to inline comments within a GitHub Pull Request review
  • resolve_pr_review_thread — Resolve a GitHub PR review thread by its comment node ID

What it needs from you

Configuration is passed through the environment: MYSQL_URL, POSTGRES_URL, GITHUB_TOKEN, GITEA_BASE_URL, GITEA_TOKEN, JIRA_URL, JIRA_EMAIL, JIRA_API_TOKEN. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Things to watch

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Lumina.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How it compares

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Lumina's toolset — Prompt, running_query, auditor_query and 11 more — is a fair guide to whether it matches your workflow. It is maintained by wahyulabs; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
PromptDescription
running_queryNatural language → MySQL SELECT query with schema auto-detection
auditor_queryFull MySQL performance & security audit by a Principal DBA
running_pg_queryNatural language → PostgreSQL SELECT query with schema auto-detection
auditor_pg_queryFull PostgreSQL performance & security audit by a Principal DBA
generate_commit_and_pushGenerate a Conventional Commit message, stage files, and push (provider-agnostic — works for GitHub, Gitea, or any git remote)
create_github_prCreate a GitHub Pull Request with auto-generated tech company-style description
review_github_prSubmit a rigorous AI code review directly to a GitHub Pull Request
fix_github_pr_reviewFetch PR review comments and automatically apply fixes to the codebase
get_github_pr_diffDownload a clean unified diff of any open GitHub PR for automated review
reply_to_pr_commentReply to inline comments within a GitHub Pull Request review
resolve_pr_review_threadResolve a GitHub PR review thread by its comment node ID
OrchestrationThe Orchestration tool exposed by this server.
SecurityAll database connections are **strictly read-only** with multiple enforcement layers:

Configuration

VariableDescriptionRequired
MYSQL_URLEndpoint or connection string the server talks to.Yes
POSTGRES_URLEndpoint or connection string the server talks to.Yes
GITHUB_TOKENCredential the server authenticates with.Yes
GITEA_BASE_URLEndpoint or connection string the server talks to.Yes
GITEA_TOKENCredential the server authenticates with.Yes
JIRA_URLEndpoint or connection string the server talks to.Yes
JIRA_EMAILConfiguration value read at startup.Optional
JIRA_API_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use Lumina to Prompt.
  • Use Lumina to running query.
  • Use Lumina to auditor query.

Frequently asked questions

It connects Lumina to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (Prompt, running_query, auditor_query, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Lumina directly.