把《星露谷物语》(Stardew Valley) 的游戏内日历数据接入 LLM 的 MCP 服务器。 它本身不读写游戏内存,而是作为一层 MCP ⇄ HTTP 代理:MCP 客户端(如 Claude Code)通过 stdio 调用工具,服务器再把请求转发给游戏内 mod HelloStardew 暴露的本地 HTTP 桥接服务。
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"stardew-mcp-server": {
"command": "uvx",
"args": [
"stardew-mcp-server"
]
}
}
}
Run in terminal:
claude mcp add stardew-mcp-server uvx stardew-mcp-server
Add to .cursor/mcp.json:
{
"mcpServers": {
"stardew-mcp-server": {
"command": "uvx",
"args": [
"stardew-mcp-server"
]
}
}
}
Or install with pip: pip install stardew-mcp-server