Skip to main content
Glama

Next.js MCP Server

by vertile-ai

Next.js MCP Server

A utility tool that analyzes your Next.js application routes and provides detailed information about them.

Demo

Router analysis demo

Overview

  • get-routers-infoThe Router Analyzer scans your Next.js app directory structure and extracts information about all API routes, including:
    • API paths
    • HTTP methods (GET, POST, PUT, DELETE, etc.)
    • Request parameters
    • Status codes
    • Request and response schemas

This is particularly useful for documentation, testing, or integrating with API management tools.

Installation

npm install next-mcp-server

Or if you're using pnpm:

pnpm add next-mcp-server

Usage

Command Line

You can run the mcp server directly:

npm run build node dist/index.js

Docker

docker build -t mcp/next -f Dockerfile . docker run mcp/next -d

Output

The tool generates detailed information about each route:

[ { "filePath": "/path/to/your/app/api/test/route.ts", "implementationPath": "/path/to/your/app/api/test/route.ts", "apiPath": "/api/test", "handlers": [ { "method": "GET", "path": "/api/test", "functionSignature": "export async function GET(request: Request)", "description": "Get test data", "parameters": [], "statusCodes": [200] }, { "method": "POST", "path": "/api/test", "functionSignature": "export async function POST(request: Request)", "description": "Create test data", "parameters": [], "requestBodySchema": "{ name: string }", "statusCodes": [201, 400] } ] } ]

Development

To run tests:

node run-router-test.js

How It Works

The tool:

  1. Scans your Next.js app directory structure for route files
  2. Analyzes each route file to extract HTTP methods, paths, parameters, etc.
  3. Extracts documentation from comments
  4. Returns a structured representation of all your API routes

License

MIT

-
security - not tested
A
license - permissive license
-
quality - not tested

A utility tool that analyzes Next.js application routes and provides detailed information about API paths, HTTP methods, parameters, status codes, and request/response schemas.

  1. Demo
    1. Overview
      1. Installation
        1. Usage
          1. Command Line
          2. Docker
        2. Output
          1. Development
            1. How It Works
              1. License

                Related MCP Servers

                • -
                  security
                  F
                  license
                  -
                  quality
                  Enables real-time communication between applications and AI models using the Model Context Protocol, supporting features like custom tools and multiple transport options for Next.js applications.
                  Last updated -
                  29,920
                  • Apple
                • -
                  security
                  F
                  license
                  -
                  quality
                  Routes requests to multiple downstream Model Context Protocol servers and provides a LangGraph.js-based agent with RAG capabilities for development assistance.
                  Last updated -
                • A
                  security
                  F
                  license
                  A
                  quality
                  Enables AI assistants to access Ramp's developer documentation and API schemas through natural language queries. Provides contextual answers about API endpoints, authentication methods, data relationships, and implementation patterns for developers building on Ramp's platform.
                  Last updated -
                  4
                • A
                  security
                  F
                  license
                  A
                  quality
                  Enables efficient extraction of specific data from JSON APIs using JSONPath patterns, reducing token usage by up to 99% compared to fetching entire responses. Supports single and batch operations for both JSON extraction and raw text retrieval from URLs.
                  Last updated -
                  4
                  1

                View all related MCP servers

                MCP directory API

                We provide all the information about MCP servers via our MCP API.

                curl -X GET 'https://glama.ai/api/mcp/v1/servers/vertile-ai/next-mcp-server'

                If you have feedback or need assistance with the MCP directory API, please join our Discord server