MCP Tools
A local Model Context Protocol (MCP) server that exposes custom tools to Claude Desktop, enabling direct interaction with your local environment. It provides a framework for building and integrating custom TypeScript tools into the Claude interface.
README
š ļø 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 install
2. Build the Project
Compile the TypeScript source:
npm run build
This 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.json
Tip: 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 build
Then 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.jsexists - Fully 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 --version
Config 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 dist
Useful References
https://simplescraper.io/blog/how-to-mcp#core-server-setup-with-express
š License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.