Install
$ agentstack add mcp-weirdo-adam-zed-mcp-server-redmine ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ● Environment & secrets Used
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Redmine MCP Server for Zed
Zed extension that registers a redmine MCP context server and launches the standalone redmine-mcp-server executable.
This repository only maintains the Zed extension. The server implementation, GitHub Releases, and Homebrew formula are maintained in weirdo-adam/redmine-mcp-server.
Requirements
- Zed with MCP extension support
- Redmine REST API enabled
- Redmine API key with the required project permissions
Server Binary
The extension downloads the matching redmine-mcp-server GitHub Release binary automatically and caches it in the Zed extension runtime directory.
Zed Configuration
{
"context_servers": {
"redmine": {
"settings": {
"REDMINE_BASE_URL": "https://redmine.example.com",
"REDMINE_API_KEY": "your-api-key",
"REDMINE_MCP_READ_ONLY": true
}
}
}
}
Configuration precedence:
- Zed
settings - Zed
command.env - Environment inherited by the Zed process
Empty string values in Zed settings are ignored.
To use a manually installed server, set command explicitly:
{
"context_servers": {
"redmine": {
"command": "/opt/homebrew/bin/redmine-mcp-server"
}
}
}
Settings
| Variable | Default | Description | | --- | --- | --- | | REDMINE_BASE_URL | none | Redmine base URL. | | REDMINE_API_KEY | none | Redmine REST API key. | | REDMINE_MCP_READ_ONLY | true | Hide and reject write tools. | | REDMINE_MCP_ENABLE_DELETES | false | Expose destructive delete/remove tools. | | REDMINE_TIMEOUT_MS | 30000 | HTTP request timeout in milliseconds. |
Server settings are documented in the standalone server repository.
Development
scripts/check.sh
The check script runs Rust formatting, type checking, Clippy, and the Zed WASI target check.
Publishing
This repository does not publish a plugin tarball or server archive. Zed extension publishing is handled through Zed's extension registry. Server Releases and Homebrew updates are maintained in the standalone server repository.
Security
Permissions are determined by the configured Redmine API key. Use the least privileged key practical for the target project, and keep real API keys in user-scoped Zed settings.
See [SECURITY.md](SECURITY.md) for vulnerability reporting.
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: weirdo-adam
- Source: weirdo-adam/zed-mcp-server-redmine
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.