mcmodding-mcp

data-ai MCP Server

mcmodding-mcp is a Model Context Protocol (MCP) server that gives AI assistants like Claude direct access to Minecraft modding documentation. Instead of relying on potentially outdated training data, your AI assistant can search real documentation, find code examples, and explain concepts accurately.

VerifiedInstall Ready
data-aidata-ai
5 views37 stars6 forksv0.4.5MIT

Why This Matters

Discovered via github-topic:mcp and last synced 3mo ago.

VerifiedInstall Ready
Source
github-topic:mcp
Stars
37
Last synced
3mo ago
Install
Instructions detected

Install

1. Install the package

npx mcmodding-mcp

2. Add to claude_desktop_config.json

{
  "mcpServers": {
    "mcmodding-mcp": {
      "command": "npx",
      "args": [
        "mcmodding-mcp"
      ]
    }
  }
}

Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) / %APPDATA%\Claude\claude_desktop_config.json (Windows)

12
Tools
0
Resources
0
Prompts
Standard I/O
Transport

Available Tools (12)

Strategy

Purpose

MCP_DEBUG

Enable debug logging

Variable

Description

DB_PATH

Custom database path

method

field

Feature

Description

Database

Description

neoforge

shared minecraft_version TEXT, hash TEXT NOT NULL -- For change detection ); -- Chunks: Searchable content units CREATE TABLE chunks ( id TEXT PRIMARY KEY, document_id INTEGER NOT NULL, chunk_type TEXT NOT NULL, -- title

code

full content TEXT NOT NULL, section_heading TEXT, code_language TEXT, word_count INTEGER, has_code BOOLEAN ); -- Embeddings: Semantic search vectors CREATE TABLE embeddings ( chunk_id TEXT PRIMARY KEY, embedding BLOB NOT NULL, -- 384-dim Float32Array dimension INTEGER NOT NULL, model TEXT NOT NULL -- Xenova/all-MiniLM-L6-v2 ); -- FTS5 indexes for fast text search CREATE VIRTUAL TABLE documents_fts USING fts5(...); CREATE VIRTUAL TABLE chunks_fts USING fts5(...); ``` --- ## Release Workflow This project uses [release-please](https://github.com/googleapis/release-please) for automated releases. ### Branch Strategy

dev

Active development

prod

Production releases

GITHUB_REPO_URL

Custom repo for updates