AgentStack
MCP verified MIT Self-run

Zed Mcp Server Redmine

mcp-weirdo-adam-zed-mcp-server-redmine · by weirdo-adam

Zed extension and standalone MCP server for Redmine, exposing issues, projects, wiki, time entries, attachments, versions, relations, watchers, and checklists to AI agents.

No reviews yet
0 installs
1 views
0.0% view→install

Install

$ agentstack add mcp-weirdo-adam-zed-mcp-server-redmine

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

Are you the author of Zed Mcp Server Redmine? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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:

  1. Zed settings
  2. Zed command.env
  3. 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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.