local-tools-mcp-server
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., "@local-tools-mcp-serverSearch for .pdf files in my Documents folder"
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.
local-tools-mcp-server
A minimal, production-ready MCP server that gives AI assistants access to local file system tools — file search, directory listing, system info, and file metadata.
Built for WorkBuddy and any MCP-compatible client.
Tools
Tool | Description |
| Search files by name pattern / extension with recursive depth control |
| OS, CPU, memory, uptime, user, Node.js version |
| List directory contents with pagination and hidden-file toggle |
| File/directory metadata + text file preview (first 1000 bytes) |
All tools are read-only. No files are ever created, modified, or deleted.
Related MCP server: FS Context MCP Server
Quick Start
Prerequisites
Node.js >= 18
npm >= 9
Install & Build
git clone https://github.com/YOUR_USERNAME/local-tools-mcp-server.git
cd local-tools-mcp-server
npm install
npm run buildConfigure in WorkBuddy
Add to ~/.workbuddy/mcp.json:
{
"mcpServers": {
"local-tools": {
"command": "node",
"args": ["E:/path/to/local-tools-mcp-server/dist/index.js"]
}
}
}Then activate the connector in WorkBuddy's Connector Management page.
Configure in Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"local-tools": {
"command": "node",
"args": ["/path/to/local-tools-mcp-server/dist/index.js"]
}
}
}Usage Examples
Once connected, the AI can use these tools naturally:
"Search my D drive for all .py files, max depth 5"
"How much free memory does my system have?"
"List the contents of my Downloads folder"
"Get info on C:\projects\config.json"
Project Structure
local-tools-mcp-server/
├── src/
│ └── index.ts # All 4 tools + server entry point (~730 lines)
├── dist/ # Compiled JS output (gitignored)
├── package.json
├── tsconfig.json
└── README.mdTech Stack
Runtime: Node.js
Language: TypeScript
Validation: Zod
Protocol: MCP TypeScript SDK
Transport: stdio (local process, zero network config)
Security
All file system access is read-only
Paths are resolved and validated before any operation
Permission errors are caught and reported gracefully
No external dependencies beyond the MCP SDK and Zod
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/fenhuayue/local-tools-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server