drio
Open app

DevEnvInfoServer - Cursor MCP Server for Development Environment Information

Source

DevEnvInfoServer - Cursor MCP Server for Development Environment Information

Catalog onlyCatalog onlySTDIO

Overview

DevEnvInfoServer is a Cursor Model Context Protocol (MCP) server that provides detailed information about your development environment to the Cursor code editor, enhancing its context-aware assistance capabilities.

To use DevEnvInfoServer, clone the repository, set up a Python virtual environment, install the dependencies, and configure it within Cursor's settings to connect the MCP server.

  • Provides comprehensive system and hardware information. - Offers details on installed development tools, languages, and package managers. - Gathers Python-specific information, including installed packages and environments. - Supports containerization and virtualization insights. - Integrates seamlessly with Cursor for enhanced development assistance.
  1. Gathering system information for debugging and optimization.
  2. Assisting developers in managing their development environments.
  3. Providing context-aware suggestions in the Cursor code editor.

Add to your AI client

Use these steps to connect DevEnvInfoServer - Cursor MCP Server for Development Environment Information 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": {
    "system-information-mcp-carterlasalle": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-system-information-mcp-carterlasalle"
      ]
    }
  }
}

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": {
    "system-information-mcp-carterlasalle": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-system-information-mcp-carterlasalle"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "system-information-mcp-carterlasalle": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-system-information-mcp-carterlasalle"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "system-information-mcp-carterlasalle": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-system-information-mcp-carterlasalle"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "system-information-mcp-carterlasalle": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-system-information-mcp-carterlasalle"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "system-information-mcp-carterlasalle": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-system-information-mcp-carterlasalle"
      ]
    }
  }
}

FAQ

What information does DevEnvInfoServer provide?

It provides system information, development environment details, Python specifics, package manager details, and more.

How do I install DevEnvInfoServer?

Clone the repository, create a virtual environment, activate it, and install the dependencies listed in requirements.txt.

Can I use DevEnvInfoServer with other code editors?

DevEnvInfoServer is specifically designed for integration with the Cursor code editor.