MCP.so
登录

very-simple-mcp-server-sample

@ynaoto

关于 very-simple-mcp-server-sample

The world most simplest MCP server sample, maybe.

基本信息

分类

其他

运行时

node

传输方式

stdio

发布者

ynaoto

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

{
  "mcpServers": {
    "very-simple-mcp-server-sample": {
      "command": "node",
      "args": [
        "<PATH_TO_HERE>/build/index.js"
      ]
    }
  }
}

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is very-simple-mcp-server-sample?

It is a minimal MCP server sample (less than 50 lines of code) that demonstrates the simplest possible integration with an MCP client such as Claude Desktop.

How to use very-simple-mcp-server-sample?

Install Node.js and npm, then run npm install and npm run build to produce a build folder. Configure the server in your MCP client’s settings—for Claude Desktop, add an entry to claude_desktop_config.json under mcpServers with the command node and the argument pointing to <PATH_TO_HERE>/build/index.js. After setup, the server appears in “Available MCP Tools.”

Key features of very-simple-mcp-server-sample

  • Minimal codebase (less than 50 lines)
  • Builds with standard npm commands
  • Configurable via MCP client settings
  • Supports permission prompts for tool execution

Use cases of very-simple-mcp-server-sample

  • Learning how to implement a basic MCP server
  • Testing MCP client integration with a simple example
  • Demonstrating permission workflows in Claude Desktop

FAQ from very-simple-mcp-server-sample

What dependencies are required?

Node.js and npm must be installed. Installing Node.js also installs npm automatically.

How do I verify the server is configured correctly?

After configuration in Claude Desktop, the server and its tools should appear under “Available MCP Tools” in the tools panel.

What happens when I invoke a tool?

Claude Desktop will show a permission prompt. After granting permission, the tool executes and a result is displayed.

评论

其他 分类下的更多 MCP 服务器