MCP ExplorerExplorer

My First Mcp

@JHSeo-giton a year ago
1 MIT
FreeCommunity
AI Systems
my-first-mcp

Overview

What is My First Mcp

my-first-mcp is a basic implementation of a Minecraft server that serves as an introductory project for users to learn about MCP (Minecraft Coder Pack) development.

Use cases

Use cases include teaching programming concepts, creating custom game modes, and experimenting with Minecraft modding.

How to use

To use my-first-mcp, clone the repository from GitHub, set up your development environment, and follow the instructions in the README to run the server and start coding.

Key features

Key features include a simple setup process, basic server functionality, and the ability to modify game mechanics and add custom features.

Where to use

my-first-mcp can be used in educational settings, hobbyist projects, and as a foundation for more complex Minecraft server modifications.

Content

my-first-mcp

Running MCP

node

{
  "mcpServers": {
    "my-first-mcp": {
      "command": "node",
      "args": [
        "/absolute/path/to/your/dist/index.js"
      ]
    }
  }
}

docker

{
  "mcpServers": {
    "my-first-mcp": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "my-first-mcp"
      ]
    }
  }
}

Runner

stdio

docker build -t my-first-mcp-stdio .
# docker build --platform linux/amd64 -t aoaiaiplayground.azurecr.io/mcp/my-first-mcp-stdio .
# docker buildx build --platform linux/amd64,linux/arm64 -t aoaiaiplayground.azurecr.io/mcp/my-first-mcp-stdio --push .
docker run -i --rm  my-first-mcp-stdio

stdio -> sse

docker build -t my-first-mcp-gateway -f Dockerfile.sse .
docker run --rm -p 8181:8000 my-first-mcp-gateway

Tools

No tools

Comments

Recommend MCP Servers

View All MCP Servers