Redmine MCP OAuth Server
Provides tools to interact with Redmine projects, issues, users, time entries, memberships, groups, versions, custom fields, and queries via the Redmine REST API.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Redmine MCP OAuth Servershow me all open issues in the development project"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
title: Redmine MCP emoji: 🔧 colorFrom: blue colorTo: indigo sdk: docker app_port: 7860 pinned: false
Redmine MCP OAuth Server
Python FastMCP HTTP server wrapping the Redmine REST API as MCP tools, with a minimal OAuth 2.1 Authorization Code flow backed by Redmine API key validation (Option B).
Auth flow
User clicks "Connect" in Coworks/Claude Desktop
→ GET /auth/authorize (shows form)
→ POST /auth/login (validates Redmine URL + API key, issues code)
→ POST /oauth/token (exchanges code for bearer token)
→ Bearer token stored server-side, mapped to per-user Redmine creds
→ Every MCP tool call uses that token to look up credentialsNo second account. User only needs their Redmine credentials.
Setup
pip install -r requirements.txt
uvicorn server:app --host 0.0.0.0 --port 8000For HTTPS (required by Coworks custom connectors):
uvicorn server:app --host 0.0.0.0 --port 8000 \
--ssl-keyfile key.pem --ssl-certfile cert.pemOr put it behind nginx/caddy with TLS termination.
Add to Claude Desktop / Coworks
Settings → Connectors → Add custom connector → https://your-server/mcp
OAuth Client ID and Secret can be left blank (public client, no secret needed with this implementation).
Tools implemented (53 Redmine API endpoints)
Projects: list, get, create, update, delete
Issues: list, get, create, update, delete, watchers, relations, journals, copy, move
Users: list, get, create, update, delete
Time Entries: list, get, create, update, delete
Memberships: list, get, create, update, delete
Groups: list, get, create, update, delete
Versions: list, get, create, update, delete
Custom Fields: list
Queries: list
Production notes
Token store is in-memory — tokens lost on restart. Replace
auth/store.py_sessionsdict with Redis or a DB for persistence.Add token expiry + refresh tokens if needed.
Rate-limit
/auth/loginand/oauth/tokenendpoints.Pin
mcp>=1.23.0to avoid CVE-2025-66416 (Host header validation).
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/zh/redmine_mcp_py'
If you have feedback or need assistance with the MCP directory API, please join our Discord server