Overview
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.
- Provides access to OpenDigger data via MCP tools. - Facilitates interaction with LLMs for data insights. - Simple installation and setup process.
- Retrieving real-time data from OpenDigger for analysis.
- Enhancing LLM capabilities with OpenDigger data.
- Supporting research and data-driven projects with accessible insights.
Add to your AI client
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.
Cursor
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"
]
}
}
}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": {
"open-digger-mcp-server-x-lab2017": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-open-digger-mcp-server-x-lab2017"
]
}
}
}Claude Code
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"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"open-digger-mcp-server-x-lab2017": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-open-digger-mcp-server-x-lab2017"
]
}
}
}Windsurf
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"
]
}
}
}Cline
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"
]
}
}
}FAQ
What is the purpose of the OpenDigger MCP Server?
The server allows users to access OpenDigger data through MCP tools, making it easier to interact with LLMs.
Is the OpenDigger MCP Server free to use?
Yes! The server is open-source and free to use.
What programming language is used for the OpenDigger MCP Server?
The server is developed in JavaScript.