Project Opener MCP Server

by jlmelis

281 downloads
Not rated
GitHub

About

MCP server for easily opening code3 projects in either VS Code or Visual Studio

Details

Author
jlmelis
Downloads
281
Categories
Other

- Opens a project in the default editor
- Retrieves information about a specific project
- Works with relative project paths
- Integrates directly with Claude Desktop settings

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Project Opener MCP Server
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Install Node.js (v18+), clone the repository, and run npm install. In Claude Desktop, add a new MCP server with the command node and arguments ["build/index.js"].

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "project opener mcp server": {
            "project-opener": {
                "command": "node",
                "args": [
                    "build/index.js"
                ]
            }
        }
    }
}

McpServers

{
    "project-opener": {
        "command": "node",
        "args": [
            "build/index.js"
        ]
    }
}

Project Opener MCP Server

This MCP server provides tools for interacting with project files from Claude Desktop.

This MCP server requires the use of the Filesystem MCP Server, which can be found at:
https://github.com/modelcontextprotocol/servers/tree/main/src/filesystem

Installation

1. Install Node.js (v18.x or later) from nodejs.org
2. Clone this repository
3. Install dependencies:

npm install

Usage with Claude Desktop

1. In Claude Desktop, go to Settings > MCP Servers
2. Add a new server with these settings:

{
"command": "node",
"args": ["build/index.js"],
}

Available Tools

Open Project

Opens a project in the default editor

Parameters:
- path: Relative path to project

Example:

{
"tool": "open-project",
"arguments": {
"path": "my-project"
}
}

Get Project Info

Gets information about a specific project

Parameters:
- path: Relative path to project

License

MIT
No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.