- Home
- MCP servers
- Next.js Docs
Next.js Docs
- javascript
11
GitHub Stars
javascript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"nanameru-next.js-docs-mcp": {
"command": "npx",
"args": [
"@taiyokimura/nextjs-docs-mcp@latest"
]
}
}
}You can run a self-contained MCP server named Next.js Docs MCP Server that provides all Next.js documentation URLs to AI agents, enabling fast, accurate document selection without external calls. This server uses a static database of 200+ Next.js pages and is designed for quick, Claude-optimized analysis by MCP clients.
How to use
You use this MCP server with your MCP client to fetch all Next.js documentation URLs and let the agent pick the most relevant pages for each user question. The server exposes a single, stable data source that stays fast by avoiding external requests, so you can rely on consistent results for document selection.
Typical workflow with Claude or another MCP client: add the Next.js Docs MCP server, then request the full list of documentation URLs. The client analyzes the collection and returns targeted links to the user based on the query. This approach works well for error handling, routing, data fetching guides, deployment topics, and performance optimization pages.
How to install
Prerequisites you need before installing: Node.js 18 or newer, and a compatible MCP client (such as Claude Code, Claude Desktop, Cursor, Windsurf, LM Studio, or Goose). Ensure you have an active internet connection if you plan to install the MCP server locally through your MCP client.
Install the MCP server using the standard configuration suitable for most tools. Run the following in your MCP-enabled environment to register the server via npx:
{
"mcpServers": {
"nextjs_docs_mcp": {
"command": "npx",
"args": ["@taiyokimura/nextjs-docs-mcp@latest"]
}
}
}
Notes
The server is a pure static URL database; it requires no external API calls or crawling. It is designed for rapid responses and predictable behavior in MCP clients. You can configure the server to start automatically in supported MCP clients by enabling auto-start where available.
Available tools
get_all_docs
Returns a comprehensive list of all Next.js documentation URLs organized by category, including titles, URLs, descriptions, and categories, to enable AI agents to analyze queries and select the most relevant pages.