MCP.so
Sign In

Adonis MCP

@7nohe

About Adonis MCP

An AdonisJS package for building remote MCP servers

Basic information

Category

Other

License

MIT

Runtime

node

Transports

stdio

Publisher

7nohe

Config

Add this server to your MCP-compatible client using the configuration below.

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

Tools

No tools detected

We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.

Overview

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).

Comments

More Other MCP servers