Skip to content
This repository was archived by the owner on Jun 16, 2025. It is now read-only.

bivex/mcpWinAuditServer

Repository files navigation

mcpWinAuditServer 💻

A starter template for building your own Model Context Protocol (MCP) server. This template provides the basic structure and setup needed to create custom MCPs that can be used with Cursor or Claude Desktop.

⚠️ Current Status: Only the mcpFreeMemory tool is fully functional at the moment. We are actively working on improving other tools. ⚠️

Features

  • Basic MCP server setup with TypeScript
  • Sample tool implementation
  • Ready-to-use project structure
  • Built with @modelcontextprotocol/sdk

Project Structure

mcpWinAuditServer/
├── index.ts        # Main server implementation
├── package.json    # Project dependencies
├── tsconfig.json   # TypeScript configuration
└── build/         # Compiled JavaScript output

Getting Started

  1. Clone this template:
git clone [your-repo-url] mcpWinAuditServer
cd mcpWinAuditServer
  1. Install dependencies:
pnpm install
  1. Build the project:
pnpm run build

This will generate the /build/index.js file - your compiled MCP server script.

Using with Cursor

  1. Go to Cursor Settings -> MCP -> Add new MCP server
  2. Configure your MCP:
    • Name: [choose your own name]
    • Type: command
    • Command: node ABSOLUTE_PATH_TO_MCP_SERVER/build/index.js

Using with Claude Desktop

Add the following MCP config to your Claude Desktop configuration:

{
  "mcpServers": {
    "mcpWinAuditServer": {
      "command": "node",
      "args": ["ABSOLUTE_PATH_TO_MCP_SERVER/build/index.js"]
    }
  }
}
  1. Build and test your implementation:
npm run build

Contributing

Feel free to submit issues and enhancement requests!

License

ISC

Releases

No releases published

Packages

No packages published