Hilanet MCP is a satirical server built with fastMCP that provides HR-related tools simulating a corporate dystopia. It offers various humorous functions like requesting salary increases, filing complaints about managers, scheduling mandatory fun events, and other workplace-themed commands.
The fastest way to start using Hilanet MCP:
# Navigate to the project directory
cd path/to/hilanet-mcp
# Start the MCP server directly with npx
npx tsx src/index.ts
You can also use npm scripts:
# With development tools
npm run dev
# With inspector interface
npm run inspect
# Clone the repository
git clone https://github.com/yourusername/hilanet-mcp.git
cd hilanet-mcp
# Install dependencies
npm install
# Build the project
npm run build
Add the following to your Cursor configuration:
{
"mcpServers": {
"hilanet": {
"command": "npx",
"args": [
"tsx",
"/path/to/hilanet-mcp/src/index.ts"
],
"cwd": "/path/to/hilanet-mcp"
}
}
}
After updating your configuration, restart Claude Desktop to enable the "hilanet" MCP with all the available tools.
Here are some example prompts you can use:
Request a salary increase with a specific amount or percentage.
Parameters:
amount
(optional): Amount to increase (in currency units)percentage
(optional): Percentage to increasereason
: Reason for requesting a salary increaseNote: You must provide either amount
or percentage
.
Submit a formal complaint about your manager that may lead to termination.
Parameters:
manager_name
: Full name of your managercomplaints
: List of specific complaints about your managerevidence
: Description of evidence supporting your complaintsRequest to work extra hours for free to demonstrate your commitment.
Parameters:
hours
: Number of extra hours you want to work (1-24)reason
: Why you want to work unpaid overtimenotify_manager
: Whether to notify your manager about your dedicationCreate meaningless buzzword-filled content to impress management.
Parameters:
context
: Where this jargon will be used (email/meeting/presentation/performance_review)intensity
: Jargon intensity level (1-10)include_acronyms
: Whether to include meaningless acronymsSchedule an important meeting during everyone's lunch break.
Parameters:
title
: Meeting titleduration
: Meeting duration in minutes (30-120)attendees
: List of people to invitebring_food
: Specify whether attendees should bring their own lunchThere are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.