my-mcp-server with TypeScript
Overview
my-mcp-server is a TypeScript-based server designed to facilitate the setup and execution of MCP (Minecraft Protocol) servers with custom tools.
To use my-mcp-server, clone the repository from GitHub, install the necessary dependencies, and integrate it with a host like Cline by configuring the MCP server settings.
- Easy installation and setup of an MCP server using TypeScript. - Ability to define and execute custom tools via the MCP protocol. - Integration capabilities with hosts such as Cline.
- Setting up a custom Minecraft server with specific tools.
- Developing and testing custom MCP tools in a controlled environment.
- Integrating with other applications for enhanced functionality.
Add to your AI client
Use these steps to connect my-mcp-server with TypeScript in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"my-mcp-server-billyangbc": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-my-mcp-server-billyangbc"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"my-mcp-server-billyangbc": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-my-mcp-server-billyangbc"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"my-mcp-server-billyangbc": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-my-mcp-server-billyangbc"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"my-mcp-server-billyangbc": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-my-mcp-server-billyangbc"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"my-mcp-server-billyangbc": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-my-mcp-server-billyangbc"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"my-mcp-server-billyangbc": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-my-mcp-server-billyangbc"
]
}
}
}FAQ
Is my-mcp-server easy to set up?
Yes! The setup process is straightforward with clear instructions provided in the repository.
Can I customize the tools for my MCP server?
Absolutely! You can define custom tools tailored to your needs.
What programming language is used in my-mcp-server?
The server is built using TypeScript.