My
- typescript
0
GitHub Stars
typescript
Language
7 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": {
"hyen43-mcpserver": {
"command": "node",
"args": [
"/absolute/path/to/my-mcp-server/dist/index.js"
]
}
}
}This MCP server lets you expose and run modular tools that can be orchestrated by clients, enabling you to extend capabilities and automate tasks by connecting through a consistent MCP interface.
How to use
You will run the MCP server locally or publish it for use by clients. Start the server using the local node runtime or via npx, then connect your MCP client to load and execute the available tools. Once running, you can invoke tools from your client by identifying the tool you want to use and providing the required inputs. The server handles the execution and returns results, making it easy to compose workflows that leverage multiple tools.
How to install
Prerequisites you need before installing: Node.js installed on your system. You may also choose to use npm for package management.
Install dependencies and build the project.
# Install dependencies
npm install
# Build the project
npm run build
Configuration and runtime options
You can run the MCP server in two common ways depending on your workflow.
Local development using the Node runtime with an absolute path to the built entry point:
{
"mcpServers": {
"my_mcp_server_node": {
"type": "stdio",
"command": "node",
"args": ["/absolute/path/to/my-mcp-server/dist/index.js"]
}
}
}
Using with Claude Desktop (local and publishing flows)
To connect Claude Desktop to your MCP server during local development, add an MCP server entry pointing to your local start command using the appropriate config path for your OS.
Example local configuration snippet for Claude Desktop (MacOS):
{
"mcpServers": {
"my_mcp_server": {
"command": "node",
"args": ["/absolute/path/to/my-mcp-server/dist/index.js"]
}
}
}
Publishing to npm and running via npx
If you publish your MCP server package, clients can run it directly with npx. The typical runtime command is shown here.
{
"mcpServers": {
"my_mcp_server": {
"type": "stdio",
"command": "npx",
"args": ["my-mcp-server"]
}
}
}
Available tools
my_tool
Describes what your tool does