Next.js MCP 서버
Next.js 애플리케이션 경로를 분석하고 해당 경로에 대한 자세한 정보를 제공하는 유틸리티 도구입니다.
데모
Related MCP server: MCP Next.js Hook Generator
개요
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
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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
