Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"midnight-nextjs-mcp": {
"args": [
"-y",
"midnight-nextjs-mcp@latest"
],
"type": "stdio",
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server combining Midnight Network blockchain development tools with Next.js DevTools for building decentralized applications.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'The' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked The against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in developer-tools / finance
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
MCP server for accessing Figma plugin console logs and screenshots via Cloudflare Workers or local mode
MCP server for using the GitLab API
MCP Security Weekly
Get CVE alerts and security updates for io.github.FractionEstate/midnight-nextjs-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server combining Midnight Network blockchain development tools with Next.js DevTools for building decentralized applications.
Compatible with all MCP-enabled AI assistants: Claude, GitHub Copilot, Cursor, Windsurf, Codeium, Continue.dev, Zed, Sourcegraph Cody, and more.
This MCP server works with any AI assistant that supports the Model Context Protocol:
| AI Assistant | Platform | Configuration |
|---|---|---|
| Claude | Desktop App, VS Code | Native MCP support |
| GitHub Copilot | VS Code, JetBrains | MCP extension |
| Cursor | IDE | Built-in MCP support |
| Windsurf | IDE | Built-in MCP support |
| Codeium | VS Code, JetBrains | MCP integration |
| Continue.dev | VS Code, JetBrains | MCP config file |
| Zed | IDE | MCP support |
| Sourcegraph Cody | VS Code | MCP extension |
midnight_init - Initialize development contextmidnight_compile_contract - Compile Compact contracts to TypeScript/ZK artifactsmidnight_analyze_contract - Static analysis for contractsmidnight_deploy_contract - Deploy contracts to the networkmidnight_call_contract - Execute circuit calls on deployed contractsmidnight_scaffold_project - Create new dApp projects from templatesmidnight_create_wallet - Generate new wallet with seed phrasemidnight_wallet_state - Get detailed wallet state and balancesmidnight_transfer_tokens - Transfer tDUST tokensmidnight_get_balance - Query token balancesmidnight_network_status - Check network health (Indexer, Proof Server, Node)midnight_get_block - Query blockchain blocksmidnight_get_transaction - Query transaction detailsmidnight_check_versions - Check for Midnight package updatesmidnight_search_docs - Search Midnight documentationmidnight-fetch-docs - Fetch specific documentation pagesmidnight-sync-docs - Sync documentation from official repomidnight-docs-status - Check documentation sync statusmidnight-list-docs - List available documentation sourcesinit - Initialize Next.js development contextnextjs_docs - Search Next.js documentationnextjs_index - Discover running dev serversnextjs_call - Execute runtime diagnostic toolsbrowser_eval - Browser automation with Playwrightupgrade_nextjs_16 - Next.js 16 upgrade guideenable_cache_components - Cache Components migration# Clone the repository
git clone https://github.com/your-username/midnight-nextjs-mcp.git
cd midnight-nextjs-mcp
# Install dependencies
pnpm install
# Build
pnpm build
The easiest way to use this MCP server is via npx — no installation required:
{
"mcpServers": {
"midnight-nextjs-mcp": {
"type": "stdio",
"command": "npx",
"args": ["-y", "midnight-nextjs-mcp@latest"]
}
}
}
The MCP configuration format is standardized across most AI assistants. Below are platform-specific examples:
Most MCP clients use this standard JSON format. Add to your client's MCP configuration file:
{
"mcpServers": {
"midnight-nextjs-mcp": {
"type": "stdio",
"command": "npx",
"args": ["-y", "midnight-nextjs-mcp@latest"]
}
}
}
Add to your VS Code settings.json or workspace .vscode/mcp.json:
{
"mcp.servers": {
"midnight-nextjs-mcp": {
"type": "stdio",
"command": "npx",
"args": ["-y", "midnight-nextjs-mcp@latest"]
... [View full README on GitHub](https://github.com/FractionEstate/midnight-nextjs-mcp#readme)