M

ModWrench

MCP server for mod platforms and local modding diagnostics with no data retention.

ModWrench·No reviews yet
Repo Docs
Share:

About

MCP server for mod platforms and local modding diagnostics with no data retention.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about ModWrench.

What is ModWrench and what are its primary functions?
ModWrench is an MCP server designed for mod platforms and local modding diagnostics. It facilitates interactions between modding tools without retaining any user data, ensuring privacy for developers as they work on their projects.
How can I integrate ModWrench into an MCP client like Cursor?
Integrating ModWrench involves configuring the client to use the stdio transport. You typically provide the path to the ModWrench executable or script in the client's MCP settings, following the client's specific setup instructions for stdio connections.
Does ModWrench require any API keys or authentication credentials?
No, ModWrench does not require any API keys, OAuth, or other authentication credentials. It is designed for seamless local integration with no data retention, simplifying its use for developers.
What kinds of checks or diagnostics can ModWrench perform?
ModWrench is focused on local modding diagnostics. While specific tools are not listed, it can be expected to provide insights into mod conflicts, compatibility issues, and general health checks for mod installations on development machines.
Is there a cost associated with using the ModWrench MCP server?
ModWrench is an open-source project hosted on GitHub, implying it is free to use. Its licensing should be checked at the repository for definitive terms, but typically such projects are free or under permissive licenses.
What is a prerequisite for running ModWrench effectively?
A key prerequisite for running ModWrench is a local environment capable of executing its diagnostic tools. This means having the necessary dependencies and modding platform installations present on the host machine to allow for proper analysis.

Install ModWrench

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "modwrench": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-modwrench"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "modwrench": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-modwrench"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "modwrench": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-modwrench"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.