OpenDigger MCP Server is a simple server designed to provide access to OpenDigger data through MCP tools, enabling interaction with large language models (LLMs).
To use the OpenDigger MCP Server, install the server and interact with it using LLMs to retrieve online data from OpenDigger and gain insights.
Use these steps to connect OpenDigger MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"open-digger-mcp-server-x-lab2017": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-open-digger-mcp-server-x-lab2017"
]
}
}
}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": {
"open-digger-mcp-server-x-lab2017": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-open-digger-mcp-server-x-lab2017"
]
}
}
}Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"open-digger-mcp-server-x-lab2017": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-open-digger-mcp-server-x-lab2017"
]
}
}
}Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
The server allows users to access OpenDigger data through MCP tools, making it easier to interact with LLMs.
Yes! The server is open-source and free to use.
The server is developed in JavaScript.
.vscode/mcp.json
{
"servers": {
"open-digger-mcp-server-x-lab2017": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-open-digger-mcp-server-x-lab2017"
]
}
}
}Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"open-digger-mcp-server-x-lab2017": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-open-digger-mcp-server-x-lab2017"
]
}
}
}Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"open-digger-mcp-server-x-lab2017": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-open-digger-mcp-server-x-lab2017"
]
}
}
}