mcp-server-example

mcp-server-example

3.1

If you are the rightful owner of mcp-server-example and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

The Model Context Protocol (MCP) server facilitates communication between various language model platforms and applications, enabling seamless integration and interaction.

Run with inspector:

npx @modelcontextprotocol/inspector node index.js

Start the server to integrate with Claude / other supporting LLMs:

node src/index.js

Setup Claude Desktop to support the server:

JSON Path:

nano ~/Library/Application\ Support/Claude/claude_desktop_config.json

JSON Config:
{
  "mcpServers": {
    "my-mcp-server": {
      "command": "node",
      "args": [
        <path to src/index.js>
      ],
      "env": {
        "NODE_OPTIONS": "--no-deprecation"
      }
    }
  }
}