mcp-primer-server

mcp-primer-server

0

MCP Primer Server is a TypeScript-based server designed for ease of use and deployment. It supports Node.js and npm, and is recommended for use with Cursor IDE.

MCP Primer Server

A TypeScript-based server project.

Prerequisites

  • Node.js (v18 or higher)
  • npm (comes with Node.js)
  • Cursor IDE (recommended)

Installation

  1. Clone the repository:
git clone git@github.com:jefersonprimer/mcp-primer-server.git
cd mcp-primer-server
  1. Install dependencies:
npm install

Running the Project

  1. Development mode:
npm run dev
  1. Build and run in production mode:
npm run build
npm start

Adding MCP to Cursor

{
  "mcpServers": {    
    "primer-mcp-server": {
      "command": "node",      
      "args": ["path/to/mcp-primer-server/build/index.js"]
    }
  }
}

Project Structure

mcp-primer-server/
├── src/           # Source code
├── build/         # Compiled JavaScript files
├── node_modules/  # Dependencies
├── package.json   # Project configuration and dependencies
└── tsconfig.json  # TypeScript configuration

License

This project is licensed under the MIT License - see the LICENSE file for details.