Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MCP Toolslist the files in my local project directory"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
π οΈ MCP Tools
A local Model Context Protocol (MCP) server that exposes custom tools to Claude Desktop, enabling Claude to interact with your local environment directly.
π Prerequisites
Before you begin, make sure you have the following installed:
Node.js v18 or higher
npm v9 or higher
Claude Desktop (latest version)
π Setup
1. Install Dependencies
Open a terminal, navigate to the project folder, and install:
cd <project-path>
npm install2. Build the Project
Compile the TypeScript source:
npm run buildThis will generate the compiled output in the dist/ folder (typically dist/index.js).
3. Configure Claude Desktop
Claude Desktop needs to know about your MCP server. Open (or create) the config file at:
%APPDATA%\Claude\claude_desktop_config.jsonTip: You can open this quickly by pressing
Win + R, typing%APPDATA%\Claude, and pressing Enter.
Paste the following configuration:
{
"mcpServers": {
"mcp-tools": {
"command": "node",
"args": [
"<project-path>/dist/index.js"
]
}
}
}Note: Replace
<project-path>with the actual path to your project folder (e.g.C:\\Users\\username\\Desktop\\mcp-tools). If you already have other MCP servers in your config, add"mcp-tools"as a new entry inside"mcpServers"β don't replace the entire file.
4. Restart Claude Desktop
Fully quit and relaunch Claude Desktop so it picks up the new config.
On Windows, make sure to right-click the system tray icon and choose Quit β just closing the window may leave it running in the background.
β Verify the Connection
Once Claude Desktop restarts:
Open a new chat
Click the π§ Tools icon (hammer icon) in the bottom-left of the input box
You should see your
mcp-toolstools listed and available
If the tools don't appear, see Troubleshooting below.
π¬ Using the Tools
Once connected, you can ask Claude to use your tools naturally in conversation. For example:
"Can you use the mcp-tools to..."Claude will automatically detect when a tool is relevant and invoke it on your behalf.
π Making Changes
If you modify any source files, rebuild and restart Claude Desktop:
npm run buildThen fully restart Claude Desktop for the changes to take effect.
π Troubleshooting
Tools not showing up in Claude Desktop
Double-check the path in
claude_desktop_config.jsonmatches your actual project location exactly (watch for single vs double backslashes)Make sure
npm run buildcompleted without errors anddist/index.jsexistsFully quit and relaunch Claude Desktop (check system tray)
Open Claude Desktop logs via Help β Open Logs Folder to look for MCP errors
Build errors
# Make sure dependencies are installed
npm install
# Check your Node version (needs v18+)
node --versionConfig file not found
If %APPDATA%\Claude\ doesn't exist yet, create the folder and the claude_desktop_config.json file manually.
π Project Structure
mcp-tools/
βββ src/
β βββ index.ts # Main MCP server entry point
βββ dist/ # Compiled output (generated by build)
β βββ index.js
βββ package.json
βββ tsconfig.json
βββ README.mdπ¨ Build Commands Reference
Different ways to compile the TypeScript source depending on your setup:
# Recommended β bundle with esbuild (fastest, most compatible)
npx esbuild src/index.ts --bundle --platform=node --format=cjs --target=node18 --outfile=dist/index.js
# Alternative β compile with tsc directly
npx tsc index.ts --module commonjs --target ES2020 --esModuleInterop true --outDir distUseful References
https://simplescraper.io/blog/how-to-mcp#core-server-setup-with-express
https://vercel.com/kb/guide/mcp-server-with-weather-tool-express
π License
MIT
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.