drio
Open app

NN-New

Source

created from MCP server demo

Catalog onlyCatalog onlySTDIO

Overview

NN-New is a project created from an MCP server demo, aimed at exploring new functionalities and features in neural networks.

To use NN-New, visit the GitHub repository at NN-New GitHub and follow the instructions provided in the README file.

  • Demonstrates neural network capabilities - Provides a framework for further development and experimentation - Open-source for community contributions
  1. Experimenting with neural network architectures
  2. Developing machine learning models
  3. Educational purposes for understanding neural networks

Add to your AI client

Use these steps to connect NN-New in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "nn-new-ninilang": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-nn-new-ninilang"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "nn-new-ninilang": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-nn-new-ninilang"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "nn-new-ninilang": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-nn-new-ninilang"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "nn-new-ninilang": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-nn-new-ninilang"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "nn-new-ninilang": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-nn-new-ninilang"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "nn-new-ninilang": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-nn-new-ninilang"
      ]
    }
  }
}

FAQ

What is the purpose of NN-New?

NN-New serves as a demonstration and development platform for neural networks.

Is NN-New open-source?

Yes! NN-New is open-source and available for anyone to contribute.

How can I contribute to NN-New?

You can contribute by submitting issues, pull requests, or suggestions on the GitHub repository.