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
- Clone the repository:
git clone [email protected]:jefersonprimer/mcp-primer-server.git
cd mcp-primer-server
- Install dependencies:
npm install
Running the Project
- Development mode:
npm run dev
- 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.