drio
Open app

MCP Project

Source

for query and add student

Catalog onlyCatalog onlySTDIO

Overview

MCP Project is a server application designed for managing student queries and data. It allows users to add and retrieve student information efficiently.

To use MCP Project, set up the environment by installing Node.js and Docker, then follow the provided commands to build and run the server. Access the application through a web browser at http://localhost:5173.

  • Query and add student information - User-friendly web interface - Built with TypeScript and Docker for easy deployment
  1. Managing student records in educational institutions.
  2. Facilitating communication between students and administrators.
  3. Providing a platform for student data analysis.

Add to your AI client

Use these steps to connect MCP Project 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": {
    "mcp-server-lee926427": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-lee926427"
      ]
    }
  }
}

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

Claude Code

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

.mcp.json (project root)

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

VS Code (Copilot)

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

.vscode/mcp.json

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What technologies does MCP Project use?

MCP Project is built using Node.js and TypeScript, and it utilizes Docker for containerization.

Is MCP Project open source?

Yes! MCP Project is available on GitHub for anyone to use and contribute.

How can I contribute to MCP Project?

You can contribute by submitting issues or pull requests on the project's GitHub repository.