loading…
Search for a command to run...
loading…
A Model Context Protocol (MCP) server designed for learning and experimentation. It provides a foundational setup for developers to build, run, and debug MCP se
A Model Context Protocol (MCP) server designed for learning and experimentation. It provides a foundational setup for developers to build, run, and debug MCP server implementations using Node.js.
This project is a Model Context Protocol (MCP) server for learning and experimentation.
Install dependencies:
npm install
Build the project:
npm run build
To run the server:
npm start
To run the server with the MCP Inspector for debugging:
npm run inspector:debug
If you encounter issues with the inspector automatically opening the browser (e.g., spawn EPERM), use the following PowerShell command to disable auto-open:
$env:MCP_AUTO_OPEN_ENABLED="false"; npx @modelcontextprotocol/inspector node --inspect-brk dist/index.js
After running this, copy the URL displayed in the terminal (e.g., http://localhost:6274/...) and paste it into your browser.
To use this server with Claude Desktop, add the following to your claude_desktop_config.json:
{
"mcpServers": {
"learn-mcp-server": {
"command": "node",
"args": [
"/absolute/path/to/learn-vscode-mcp/dist/index.js"
]
}
}
}
{
"mcpServers": {
"learn-mcp-server": {
"command": "node",
"args": [
"D:\\project_kyog\\git\\project_learn\\learn_vscode_mcp\\dist\\index.js"
]
}
}
}
Replace the path with the actual absolute path to your project's dist/index.js file.
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"learn-mcp-server": {
"command": "npx",
"args": []
}
}
}PRs, issues, code search, CI status
Database, auth and storage
Reference / test server with prompts, resources, and tools.
Secure file operations with configurable access controls.