Next.js MCP Server

Integrations

  • Supports containerized deployment of the MCP server through Docker, allowing for isolated and portable execution of the route analysis functionality.

  • Analyzes Next.js application routes and provides detailed information about API endpoints, including paths, HTTP methods, parameters, status codes, and request/response schemas. Useful for documentation, testing, and API management.

Next.js MCP 서버

Next.js 애플리케이션 경로를 분석하고 해당 경로에 대한 자세한 정보를 제공하는 유틸리티 도구입니다.

데모

개요

  • get-routers-info라우터 분석기는 Next.js 앱 디렉토리 구조를 스캔하고 다음을 포함한 모든 API 경로에 대한 정보를 추출합니다.
    • API 경로
    • HTTP 메서드(GET, POST, PUT, DELETE 등)
    • 요청 매개변수
    • 상태 코드
    • 요청 및 응답 스키마

이 기능은 API 관리 도구와의 문서화, 테스트 또는 통합에 특히 유용합니다.

설치

지엑스피1

또는 pnpm을 사용하는 경우:

pnpm add next-mcp-server

용법

명령줄

mcp 서버를 직접 실행할 수 있습니다.

npm run build node dist/index.js

도커

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

산출

이 도구는 각 경로에 대한 자세한 정보를 생성합니다.

[ { "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] } ] } ]

개발

테스트를 실행하려면:

node run-router-test.js

작동 원리

도구:

  1. Next.js 앱 디렉토리 구조에서 경로 파일을 스캔합니다.
  2. 각 경로 파일을 분석하여 HTTP 메서드, 경로, 매개변수 등을 추출합니다.
  3. 주석에서 문서를 추출합니다.
  4. 모든 API 경로의 구조화된 표현을 반환합니다.

특허

MIT

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

Next.js 애플리케이션 경로를 분석하고 API 경로, HTTP 메서드, 매개변수, 상태 코드, 요청/응답 스키마에 대한 자세한 정보를 제공하는 유틸리티 도구입니다.

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