- Home
- MCP servers
- MCP Activities Server
MCP Activities Server
- typescript
0
GitHub Stars
typescript
Language
2 months ago
First Indexed
3 weeks ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
You have an MCP server that lets Cursor interact with the meupontoonline system to create activities. It supports local development and cloud deployment, automatically formats data to the API’s DTO, and submits form-data to the API for seamless integration.
How to use
Use Cursor to connect to the MCP server and perform actions like creating activities. You can configure either the cloud-deployed server or a local development instance, then execute the available activity-related endpoint to post the data to meupontoonline.
How to install
Prerequisites you need on your machine before you start.
Install Node.js (LTS version) and npm.
Clone or download the project, then install dependencies.
npm install
Additional notes
Configuration is prepared for two deployment options: a cloud-hosted MCP server and a local development server. You can point Cursor to either endpoint depending on your workflow.
For the cloud-hosted server, Cursor should connect to the Railway-hosted endpoint.
For local development, Cursor should connect to the local endpoint started on port 3000.
# Local development start
npm run dev
# Production start (compiled)
npm start
Available tools
create_activity
Creates a new activity in the meupontoonline system with required fields startDate, endDate, project, description, and authentication through the meupontoonline login flow.