Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MCP ActivitiesLog 'Bug fixes' for Project X on 2025-02-25 from 09:00 to 17:00 (user@mail.com:pass)"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP Activities
A Model Context Protocol (MCP) server that allows Cursor to interact with the meupontoonline system to create activities. The server is deployed on Railway and supports both local development and cloud deployment.
Features
Create activities with start date, end date, and description
Automatic DTO transformation according to the meupontoonline API format
Form-data submission to the meupontoonline API
HTTP transport for cloud deployment
TypeScript support for development
Installation
Clone or download this project
Install dependencies:
Usage
Running the MCP Server
Local Development
Start the server in development mode:
Or start in production mode:
Railway Deployment
The server is deployed on Railway and accessible via HTTP transport.
Cursor Integration
To use this MCP server with Cursor, follow these steps:
Method 1: Railway Deployment (Recommended)
Open Cursor
Go to Settings → Features → Model Context Protocol
Add a new server with this configuration:
Method 2: Local Development
For local development, use this configuration:
Troubleshooting
For Railway deployment: Ensure the URL is correct and the server is running
For local development: Ensure Node.js is installed and accessible from PATH
Verify the file paths are correct for your system
Check that all dependencies are installed with
npm installRestart Cursor after adding the configuration
Build the project with
npm run buildbefore running locally
Available Tools
create_activity
Creates a new activity in the meupontoonline system.
Parameters:
startDate(string, required): Start date and time in ISO format (YYYY-MM-DDTHH:mm:ss or YYYY-MM-DD HH:mm)endDate(string, required): End date and time in ISO format (YYYY-MM-DDTHH:mm:ss or YYYY-MM-DD HH:mm)project(string, required): Project namedescription(string, required): Activity descriptionemail(string, required): Login email for meupontoonlinepassword(string, required): Login password for meupontoonline
Example usage in Cursor:
DTO Transformation
The server automatically transforms user input to the required DTO format:
Input:
Start Date:
2025-01-15T09:00:00End Date:
2025-01-15T17:00:00Description:
"Project Development - Frontend Implementation"
Transformed DTO:
Authentication
The server requires authentication to access the meupontoonline API. The login process:
Login Request: Sends credentials to
https://app.meupontoonline.com/Login/RealizaLoginCookie Extraction: Extracts authentication cookies from the response
Session Management: Uses cookies for subsequent API requests
Required Credentials:
email: Your meupontoonline login emailpassword: Your meupontoonline login password
API Integration
The server sends the transformed DTO as form-data to:
URL:
https://app.meupontoonline.com/Lancamentos/CreateMethod: POST
Content-Type: multipart/form-data
Authentication: Uses cookies from login session
Error Handling
The server includes comprehensive error handling for:
Missing required parameters
Invalid date formats
End date before start date
Authentication failures (invalid credentials)
API request failures
Network errors
Session expiration
Development
Project Structure
Scripts
npm run build: Compile TypeScript to JavaScriptnpm run dev: Run in development mode with hot reloadnpm start: Run compiled versionnpm run dev:watch: Run with file watching
Dependencies
@modelcontextprotocol/sdk: MCP server frameworkexpress: HTTP server frameworkaxios: HTTP client for API requeststypescript: TypeScript compilertsx: TypeScript execution environment
Author
Yohan Fraga Santos