MCP.so
ログイン

MCP Server

@tmizuma

MCP Server について

概要はまだありません

基本情報

カテゴリ

その他

ランタイム

node

トランスポート

stdio

公開者

tmizuma

設定

以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。

{
  "mcpServers": {
    "mcp-aws-frequent-words": {
      "command": "node",
      "args": [
        "build/index.js"
      ]
    }
  }
}

ツール

ツールは検出されませんでした

ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。

概要

What is MCP Server?

MCP Server is a Node.js-based server that can be built and run locally. It is configured as an MCP (Model Context Protocol) server for use with Claude, as shown in the example Claude Desktop configuration.

How to use MCP Server?

Install dependencies with npm install, then build with npm run build, make the output file executable with chmod 755 ./build/index.js, and run it with node ./build/index.js. To integrate with Claude, add a JSON entry under mcpServers in the Claude configuration, specifying the Node.js binary path and the server’s built index.js file.

Key features of MCP Server

  • Installed via npm
  • Built with npm run build
  • Run as a Node.js process
  • Configured as an MCP server for Claude

Use cases of MCP Server

FAQ from MCP Server

How do I install MCP Server?

Run npm install in the project directory.

How do I build MCP Server?

Run npm run build in the project directory.

How do I run MCP Server?

First run chmod 755 ./build/index.js to set execute permissions, then run node ./build/index.js.

How do I configure MCP Server with Claude?

Add a JSON object under mcpServers in the Claude configuration with the command set to the Node.js binary path and args containing the path to ./build/index.js. An example configuration is provided in the README.

What dependencies does MCP Server require?

The README only mentions an npm install step, implying Node.js and npm are required. No specific dependencies are listed.

コメント

「その他」の他のコンテンツ