Skip to content

Latest commit

 

History

History
69 lines (53 loc) · 2.84 KB

File metadata and controls

69 lines (53 loc) · 2.84 KB

CodeMouse MCP Server

Connect CodeMouse to Claude, ChatGPT, and your coding tools over the Model Context Protocol (MCP) and ask, in plain language, about your accounts, repositories, and pull-request reviews — what passed, what failed, how long it took, and what it cost.

CodeMouse is an AI code reviewer for GitHub pull requests. This is a remote, hosted, OAuth MCP server — there's nothing to install or run.

  • Server URL: https://codemouse.ai/api/mcp
  • Transport: Streamable HTTP
  • Auth: OAuth 2.1 (PKCE) — sign in with GitHub. Access is read-only and limited to the accounts you own or belong to. CodeMouse never sees your AI provider keys.
  • Registry: io.github.squidcode/codemouse · Smithery · Homepage

Ask it things like

  • "Which of my PRs failed review this week, and why?"
  • "How much have my CodeMouse reviews cost this month?"
  • "Show me the last review on acme/api and what it flagged."
  • "Which repositories does CodeMouse have access to?"
  • "What was the longest-running review, and how long did it take?"

Tools

All tools are read-only and scoped to accounts you're a member of.

Tool Description
list_accounts The CodeMouse accounts (organizations) you belong to, with your role and subscription status.
list_repositories The GitHub orgs and repositories CodeMouse can access, per account.
list_reviews Recent PR reviews for an account — status, PR, repo, duration, cost.
get_review Full detail of one review: status, timing/duration, cost, tokens, per-provider runs, comments posted, and any error/failure detail.

Connect it

Claude & ChatGPT (web / desktop)

Add a custom connector / MCP server, paste https://codemouse.ai/api/mcp, then sign in with GitHub and approve.

Claude Code

claude mcp add --transport http codemouse https://codemouse.ai/api/mcp

Then run /mcp inside Claude Code to finish the GitHub sign-in.

Codex CLI

Add to ~/.codex/config.toml:

[mcp_servers.codemouse]
command = "npx"
args = ["-y", "mcp-remote", "https://codemouse.ai/api/mcp"]

Cursor & other stdio tools

Use the mcp-remote bridge — it handles the OAuth browser flow for clients that only speak stdio:

npx -y mcp-remote https://codemouse.ai/api/mcp

About

CodeMouse runs AI code reviews on every GitHub pull request (Claude + GPT, your own keys), reads existing PR comments so it never repeats human or bot feedback, and approves clean PRs. Learn more at codemouse.ai — a Squidcode product.

The hosted MCP server is operated by CodeMouse; this repository is its public documentation.