{
"mcpServers": {
"mcsrv-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 343 days ago.
Will it work with my client?
Transport: stdio, sse, http. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Mcsrv Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP Tools Server is a Minecraft server plugin that provides an API for Large Language Models (LLMs) to interact with your Minecraft server. It leverages the Model Context Protocol (MCP) to expose server functionality as tools that can be called by AI assistants.
plugins folderplugins/MCPToolsServer/config.yml/mcptools reload in-game to apply changesThe plugin's configuration file (config.yml) contains the following sections:
mcp:
server:
port: 8080 # Port for the MCP server
https: false # Whether to use HTTPS
access-token: "" # Access token for authentication (empty = no auth)
logs:
max-lines: 1000 # Maximum number of log lines to store
include-console: true # Include console logs
include-chat: true # Include player chat
include-commands: true # Include command execution
chat:
max-messages: 100 # Maximum number of chat messages to store
include-discord: true # Include Discord messages
commands:
allowed-prefixes: [] # Allowed command prefixes (empty = all)
blocked-prefixes: # Blocked command prefixes
- "op"
- "deop"
- "ban"
- "kick"
- "stop"
- "reload"
log-execution: true # Log command execution
The plugin exposes an HTTP API that follows the Model Context Protocol (MCP). The API endpoints are:
GET /info - Get server informationGET /tools/list - List available toolsPOST /tools/call - Call a toolview_logs)Retrieves server logs.
Parameters:
limit (integer, optional): Number of log lines to return (default: 50, max: 1000)filter (string, optional): Filter logs by textlogType (string, optional): Type of logs to return ("all", "console", "chat", "command")Example Request:
{
"name": "view_logs",
"arguments": {
"limit": 100,
"filter": "error",
"logType": "console"
}
}
view_chat)Retrieves chat messages.
Parameters:
limit (integer, optional): Number of messages to return (default: 20, max: 100)player (string, optional): Filter messages by player nameincludeDiscord (boolean, optional): Whether to include Discord messages (default: true)Example Request:
{
"name": "view_chat",
"arguments": {
"limit": 50,
"player": "Steve",
"includeDiscord": true
}
}
execute_command)Executes a Minecraft command.
Parameters:
command (string, required): Command to execute (without leading slash)asConsole (boolean, optional): Whether to execute as console (default: true)player (string, optional): Player to execute as (only if asConsole is false)Example Request:
{
"name": "execute_command",
"arguments": {
"command": "time set day",
"asConsole": true
}
}
# List available tools
curl -X GET http://localhost:8080/tools/list
# View logs
curl -X POST http://localhost:8080/t
... [View full README on GitHub](https://github.com/metrovoc/mcsrv-mcp-server#readme)