MCP.so
ログイン

Adonis MCP

@7nohe

Adonis MCP について

An AdonisJS package for building remote MCP servers

基本情報

カテゴリ

その他

ライセンス

MIT

ランタイム

node

トランスポート

stdio

公開者

7nohe

設定

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

{
  "mcpServers": {
    "adonis-mcp": {
      "command": "node",
      "args": [
        "ace",
        "add",
        "@7nohe/adonis-mcp"
      ]
    }
  }
}

ツール

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

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

概要

What is Adonis MCP?

Adonis MCP is a package for the AdonisJS framework that enables building remote MCP (Model Context Protocol) servers using Server-Sent Events (SSE). It's intended for developers who want to create MCP-compatible tools, resources, and prompts within an AdonisJS application.

How to use Adonis MCP?

Install via node ace add @7nohe/adonis-mcp. Configure by editing the generated config/mcp.ts file. Register routes (tools, resources, prompts) in start/routes.ts using the registerRoutes method, then start the server with npm run dev. Debug via a configuration file (e.g., for Claude Desktop) or the MCP Inspector.

Key features of Adonis MCP

  • Integrates MCP support directly into AdonisJS.
  • Uses Server-Sent Events (SSE) for remote transport.
  • Allows defining resources, tools, and prompts via registerRoutes.
  • Provides configuration for custom SSE and messages paths.
  • Supports debugging with MCP Inspector and client config files.

Use cases of Adonis MCP

  • Exposing AdonisJS application data as MCP resources to AI clients.
  • Building custom tools that interact with an AdonisJS backend.
  • Creating prompt templates for AI assistants that consume MCP servers.

FAQ from Adonis MCP

What runtime does Adonis MCP require?

It requires Node.js with the AdonisJS framework installed; the package is added via Ace commands.

How do I debug my MCP server?

You can debug using a configuration file (e.g., for Claude Desktop) by specifying the SSE URL, or by using the MCP Inspector tool with SSE transport.

Does this package support only SSE transport?

Yes, the README explicitly describes SSE as the transport method for remote MCP servers.

Where is the MCP server URL configured?

In the config/mcp.ts file you set ssePath and messagesPath, which define the endpoints. The server runs on AdonisJS’s default host and port (e.g., http://localhost:3333/sse).

コメント

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