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
작동 원리
도구:
Next.js 앱 디렉토리 구조에서 경로 파일을 스캔합니다.
각 경로 파일을 분석하여 HTTP 메서드, 경로, 매개변수 등을 추출합니다.
주석에서 문서를 추출합니다.
모든 API 경로의 구조화된 표현을 반환합니다.
특허
MIT
Related MCP Servers
- -securityFlicense-qualityEnables 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 -30,136
- -securityFlicense-qualityRoutes requests to multiple downstream Model Context Protocol servers and provides a LangGraph.js-based agent with RAG capabilities for development assistance.Last updated -
- AsecurityFlicenseAqualityEnables 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
- AsecurityFlicenseAqualityEnables 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 -41