- Home
- MCP servers
- HRMS
HRMS
- typescript
0
GitHub Stars
typescript
Language
6 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"devmitul17-hrms-mcp-server": {
"command": "node",
"args": [
"/absolute/path/to/hrms-mcp-server/dist/index.js"
]
}
}
}You can run and extend a Model Context Protocol (MCP) server to expose your own tools and interact with MCP clients. This server is built to host MCP tools, load them on startup, and connect with clients like Claude Desktop or other MCP-enabled clients for practical automation and data processing.
How to use
Use this MCP server with your MCP client to load, run, and test your tools. Start the server locally during development and configure your client to point at the local runtime. When you publish, you can run it via a package manager and connect your client to the published endpoint.
How to install
Prerequisites: Node.js and npm installed on your system.
Install dependencies for the project.
Build the project to generate the distributable files.
Run the server locally during development or publish it for production use.
# Prerequisites
# Ensure Node.js and npm are installed on your system
node -v
npm -v
# Install dependencies
npm install
# Build the project
npm run build
Configuration and usage notes
Two standard ways to run the MCP server are shown for local development and for published use.
# Local development runtime (stdio, local)
{
"type": "stdio",
"name": "hrms_mcp",
"command": "node",
"args": ["/absolute/path/to/hrms-mcp-server/dist/index.js"]
}
Building and testing
Make changes to your tools, then build to compile and load them on startup. The server automatically loads your tools when it starts.
# Build the project after making changes
npm run build
Using with Claude Desktop
To integrate with Claude Desktop, add an MCP server configuration to your Claude Desktop config file. You can run the server locally during development or publish it for production use.
Local development configuration (MacOS): ~/Library/Application Support/Claude/claude_desktop_config.json. Windows: %APPDATA%/Claude/claude_desktop_config.json.
Local development configuration example
json
{
"mcpServers": {
"hrms-mcp-server": {
"command": "node",
"args":["/absolute/path/to/hrms-mcp-server/dist/index.js"]
}
}
}
After publishing configuration example
json
{
"mcpServers": {
"hrms-mcp-server": {
"command": "npx",
"args": ["hrms-mcp-server"]
}
}
}
Available tools
my_tool
Describes what your tool does; processes an input message and returns a processed string