π¦
Tools
MCP server: Tools
0 installs
Trust: 37 β Low
Devtools
Installation
npx mcp-server-toolsAsk AI about Tools
Powered by Claude Β· Grounded in docs
I know everything about Tools. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Loading tools...
Reviews
Documentation
MCP Setup: Connect VS Code (Server) with Cursor (Client)
This project demonstrates how to connect two different editors β Visual Studio Code and Cursor β using MCP (Model-Connected Programming) to allow code execution, debugging, and interaction across both tools.
Goal
To use:
- VS Code as the MCP server (where the code runs)
- Cursor as the MCP client (where the code is edited and AI-assisted)
Project Structure
GEN-AI/ βββ genai-cohort/ βββ mcp-weather/ βββ index.js
This index.js is the entry point for your Node.js server that gets run by MCP.
How I Set It Up
- Opened VS Code β this acted as the MCP server.
- Opened Cursor β this acted as the MCP client.
- Inside Cursor, I opened the MCP Tool and added this configuration:
{
"mcpServers": {
"weather-server": {
"command": "node",
"args": ["./GEN-AI/genai-cohort/mcp-weather/index.js"],
"env": {
"API_KEY": "your_actual_api_key_here"
}
}
}
}
