MCP Primer Server logo

MCP Primer Server

by jefersonprimer

A TypeScript-based server project designed for use with Cursor IDE. It provides a foundation for building server-side applications.

View on GitHub

Last updated: N/A

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 [email protected]: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.