sq-cli-gpt-mcp
Private MCP server that enables a single GitHub identity to run Codex Security CLI scans on registered repositories, with OAuth authentication and a web-based cockpit UI.
README
sq-cli-gpt-mcp
Private, standalone Streamable HTTP MCP server that lets one approved GitHub identity operate a project-local Codex Security CLI against explicitly registered repositories on this Fedora workstation.
- Public MCP endpoint:
https://sqcligpt.fredlingautomation.dev/mcp - Local origin:
http://127.0.0.1:8630/mcp - Health:
http://127.0.0.1:8630/health - MCP service:
sq-cli-gpt-mcp.service - Tunnel service:
cloudflared-sq-cli-gpt-mcp.service
This release adds a private SQ Security Cockpit widget. It has no source mutation, remediation, Git write, generic shell, arbitrary argv, or unrestricted file tool.
Design
The server exposes 14 narrow MCP tools and one versioned MCP Apps resource. A caller registers an exact Git
worktree under /home/aidev/Projects, receives an opaque repository ID, and
uses that ID for all later operations. Starting a scan persists the request and
captured Git revision in SQLite before returning a durable job ID. One local
worker invokes the pinned Codex Security executable with an internally built
argument array. Findings and artifacts remain in private service state and are
returned only as paged metadata or bounded, redacted excerpts.
The resource is ui://sq-security/cockpit-v1.html, a self-contained React
bundle using the MCP Apps bridge. A development-only ?demo=1 fixture is
tree-shaken from production and checked out by validation and installation.
Registration/removal remain chat-only; the widget can inspect summaries, start
scans, and request cancellation with inline confirmation.
Authentication is a local OAuth authorization-server proxy backed by a GitHub OAuth App. It supports protected-resource metadata, OAuth discovery, DCR, CIMD, authorization code with PKCE S256, refresh tokens, encrypted persistent OAuth state, and an exact one-login allowlist. Cloudflare provides HTTPS transport only.
See architecture and the threat model.
Requirements
- Fedora user session with systemd user services and linger
- Python 3.12 or newer and
uv - Node.js 22 or newer and
npm - Git, curl, OpenSSL, SQLite
- the existing file-backed Codex sign-in at
~/.codex/auth.json, or a separately completed login in the service's isolated CLI home cloudflaredand~/.cloudflared/cert.pemfor public routing- a GitHub OAuth App created with the exact values in GitHub OAuth setup
Python and Node dependencies are locked inside this repository. No other MCP project is imported or used at runtime.
Install
cd /home/aidev/Projects/004_MCPS/sq-cli-gpt-mcp
./scripts/validate-local.sh
./scripts/install.sh
The installer creates:
~/.config/sq-cli-gpt-mcp/sq-cli-gpt-mcp.envwith mode0600;~/.local/state/sq-cli-gpt-mcp/with mode0700;- an isolated copy of
~/.codex/auth.jsonat~/.local/state/sq-cli-gpt-mcp/cli-home/auth.json; ~/.config/systemd/user/sq-cli-gpt-mcp.service.
It leaves the unit disabled until the GitHub client ID, client secret, and approved login have been placed in the protected environment file. The OAuth JWT/encryption key is generated locally. Rerunning the installer after those values exist enables and starts the unit.
After OAuth values are present:
systemctl --user restart sq-cli-gpt-mcp.service
curl --fail --silent http://127.0.0.1:8630/health
Install the dedicated named tunnel after the local origin is ready:
./scripts/install-cloudflare.sh
systemctl --user restart cloudflared-sq-cli-gpt-mcp.service
curl --fail --silent https://sqcligpt.fredlingautomation.dev/health
The tunnel installer creates or reuses only the named tunnel
sq-cli-gpt-mcp, safely checks an existing DNS record, and never edits the
workstation's shared Cloudflare configuration.
Operate
systemctl --user start sq-cli-gpt-mcp.service
systemctl --user stop sq-cli-gpt-mcp.service
systemctl --user restart sq-cli-gpt-mcp.service
systemctl --user status sq-cli-gpt-mcp.service
journalctl --user -u sq-cli-gpt-mcp.service -f
systemctl --user start cloudflared-sq-cli-gpt-mcp.service
systemctl --user stop cloudflared-sq-cli-gpt-mcp.service
systemctl --user restart cloudflared-sq-cli-gpt-mcp.service
systemctl --user status cloudflared-sq-cli-gpt-mcp.service
journalctl --user -u cloudflared-sq-cli-gpt-mcp.service -f
Local health returns only {"status":"ok"}. MCP requests require a bearer
token; unauthenticated /mcp requests return 401.
Back up state while the service is stopped:
systemctl --user stop sq-cli-gpt-mcp.service
./scripts/backup-state.sh /absolute/private/backup-directory
systemctl --user start sq-cli-gpt-mcp.service
For recovery, retention, database integrity, audit rotation, and credential rotation, use operations.
Tools
| Tool | Purpose |
|---|---|
sq_security_get_readiness |
Verify database, CLI, CLI authentication, and service readiness |
sq_security_list_repositories |
Page through safe names and opaque repository IDs |
sq_security_register_repository |
Register one exact allowed Git worktree |
sq_security_remove_repository |
Soft-remove an inactive registration |
sq_security_start_scan |
Queue repository, path, diff, or working-tree scan |
sq_security_get_scan |
Poll a durable job and inspect coverage |
sq_security_cancel_scan |
Cancel a queued or running process group |
sq_security_list_scans |
Page through durable scan history |
sq_security_list_findings |
Page through normalized completed-scan findings |
sq_security_get_finding |
Retrieve bounded evidence for one local finding ID |
sq_security_list_artifacts |
List private artifact metadata and hashes |
sq_security_get_artifact_excerpt |
Read a hash-checked bounded redacted excerpt |
sq_security_compare_scans |
Ask the verified CLI to compare compatible completed scans |
Only sq_security_open_cockpit renders UI and carries ChatGPT compatibility
aliases. Public submission remains deferred until reviewer authentication,
demo data, publisher verification, support/privacy pages, and a successful
sealed real scan are verified.
The compatibility path is explicit start/status/cancel tools. MCP protocol Tasks are disabled because end-to-end ChatGPT support was not established for this deployment.
Scan boundaries
- Initial allowed root:
/home/aidev/Projects - Default concurrency: one real scan
- Default scan timeout: four hours
- Standard/deep modes map only to verified CLI flags
- Diff refs are validated by Git and cannot begin with
- - Target paths are existing, repository-relative, symlink-free paths
- Artifacts are stored under
~/.local/state/sq-cli-gpt-mcp/artifacts - Large outputs are bounded; artifact access accepts IDs, never paths, and opens the stored file descriptor-relative without following symlinks
- Registered repositories are read-only scan inputs
The adapter captures branch, commit, detached/dirty state, and sanitized remote metadata at queue time. A changed filesystem topology is revalidated before each scan.
Development and validation
uv sync --frozen --all-groups
npm ci --ignore-scripts
uv run ruff format --check .
uv run ruff check .
uv run mypy
uv run pytest
npm audit --audit-level=high
The controlled fake CLI covers successful, partial, malformed, nonzero, cost-limit, timeout, cancellation, process-group, partial-artifact, and restart paths. It is never used as production evidence. Executed evidence and remaining external checks are tracked in validation.
Connect ChatGPT
After the production service, tunnel, and OAuth values are ready, follow ChatGPT setup. The URL entered in ChatGPT is exactly:
https://sqcligpt.fredlingautomation.dev/mcp
Troubleshooting
Readiness and CLI authentication:
CODEX_HOME="$HOME/.local/state/sq-cli-gpt-mcp/cli-home" \
HOME="$HOME/.local/state/sq-cli-gpt-mcp/cli-home" \
./node_modules/.bin/codex-security login status
Port ownership:
ss -ltnp 'sport = :8630'
Unit configuration:
systemd-analyze --user verify \
"$HOME/.config/systemd/user/sq-cli-gpt-mcp.service"
systemctl --user cat sq-cli-gpt-mcp.service
Tunnel configuration:
"$HOME/.local/bin/cloudflared" tunnel \
--config "$HOME/.config/sq-cli-gpt-mcp/cloudflared.yml" ingress validate
dig +short CNAME sqcligpt.fredlingautomation.dev
If OAuth metadata changes, restart both services and refresh the MCP connection from the ChatGPT Plugins page before retesting.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。