Neurolink

v1.0.0โ€ขCloud Servicesโ€ขstable

๐Ÿ“‡ โ˜๏ธ ๐Ÿ  ๐ŸŽ ๐ŸชŸ ๐Ÿง - Making enterprise AI infrastructure universally accessible. Edge-first platform unifying 12 providers and 100+ models with multi-agent orchestration, HITL workflows, guardrails middleware, and context summarization.

agentsaiai-developmentai-platformautomation
Share:
91
Stars
0
Downloads
0
Weekly
0/5

What is Neurolink?

Neurolink is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to ๐Ÿ“‡ โ˜๏ธ ๐Ÿ  ๐ŸŽ ๐ŸชŸ ๐Ÿง - making enterprise ai infrastructure universally accessible. edge-first platform unifying 12 providers and 100+ models with multi-agent orchestration, hitl workflows, guardrails mid...

๐Ÿ“‡ โ˜๏ธ ๐Ÿ  ๐ŸŽ ๐ŸชŸ ๐Ÿง - Making enterprise AI infrastructure universally accessible. Edge-first platform unifying 12 providers and 100+ models with multi-agent orchestration, HITL workflows, guardrails middleware, and context summarization.

This server falls under the Cloud Services category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • ๐Ÿ“‡ โ˜๏ธ ๐Ÿ  ๐ŸŽ ๐ŸชŸ ๐Ÿง - Making enterprise AI infrastructure universal

Use Cases

Enterprise AI infrastructure access
Multi-agent orchestration and workflows
Provider unification across 12+ models
juspay

Maintainer

LicenseMIT
Languagetypescript
Versionv1.0.0
UpdatedMay 18, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

NPM

npx -y @juspay/neurolink

Manual Installation

npx -y @juspay/neurolink

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use Neurolink

Neurolink (@juspay/neurolink) is an enterprise AI infrastructure platform that unifies access to 33+ LLM providers โ€” including OpenAI, Anthropic, Google Gemini, AWS Bedrock, Azure OpenAI, Ollama, DeepSeek, and more โ€” through a single consistent API. It ships as an MCP server that adds multi-agent orchestration, human-in-the-loop (HITL) approval workflows, guardrails middleware, context summarization, multimodal file processing, and built-in RAG to any MCP-compatible AI client. Teams use it to standardize their AI stack, add enterprise-grade safety controls, and switch between providers without changing application code.

Prerequisites

  • Node.js 18+ installed
  • API keys for at least one supported LLM provider (e.g. ANTHROPIC_API_KEY, OPENAI_API_KEY, GOOGLE_AI_API_KEY)
  • Optional: Redis instance for distributed conversation memory (REDIS_URL)
  • An MCP-compatible client such as Claude Desktop, Cursor, or Windsurf
1

Install the Neurolink package

Install @juspay/neurolink from npm, or use npx to run it without a global install.

npm install @juspay/neurolink
# or run directly
npx @juspay/neurolink --help
2

Set your provider API key environment variables

Export API keys for the providers you want to use. At minimum, set one provider key. Neurolink will auto-select a provider based on available keys.

export ANTHROPIC_API_KEY="your-anthropic-key"
export OPENAI_API_KEY="your-openai-key"
export GOOGLE_AI_API_KEY="your-google-key"
3

Add Neurolink to your MCP client configuration

Register the server in claude_desktop_config.json, passing provider keys as environment variables so the server can authenticate with upstream LLMs.

{
  "mcpServers": {
    "neurolink": {
      "command": "npx",
      "args": ["-y", "@juspay/neurolink"],
      "env": {
        "ANTHROPIC_API_KEY": "your-anthropic-key",
        "OPENAI_API_KEY": "your-openai-key"
      }
    }
  }
}
4

Restart your MCP client

Restart Claude Desktop or your chosen MCP client to activate Neurolink. Tools for generation, streaming, RAG, file analysis, and provider management will become available.

5

Use Neurolink to route tasks to different providers

Ask your AI assistant to generate content, analyze documents, or run code tasks using a specific provider or model. Neurolink handles provider selection, fallback, and response normalization automatically.

Neurolink Examples

Client configuration

Example claude_desktop_config.json for Neurolink with multiple provider keys.

{
  "mcpServers": {
    "neurolink": {
      "command": "npx",
      "args": ["-y", "@juspay/neurolink"],
      "env": {
        "ANTHROPIC_API_KEY": "sk-ant-...",
        "OPENAI_API_KEY": "sk-...",
        "GOOGLE_AI_API_KEY": "AIza..."
      }
    }
  }
}

Prompts to try

Example prompts demonstrating multi-provider routing, RAG, and HITL workflows.

- "Use GPT-4o to summarize this PDF: [attach file]"
- "Generate a haiku using Claude Sonnet and then the same prompt using Gemini, and compare the results"
- "Search my uploaded documents for anything about refund policies"
- "Analyze this CSV file and produce a statistical summary"
- "List all available LLM providers and their current status"

Troubleshooting Neurolink

No provider available error on startup

Ensure at least one provider API key is set in the environment. Check that the key name matches exactly: ANTHROPIC_API_KEY, OPENAI_API_KEY, GOOGLE_AI_API_KEY, etc. Run 'npx @juspay/neurolink --help' to verify the installation.

Redis connection errors for conversation memory

If you do not have Redis, either omit the REDIS_URL variable (memory will use an in-process SQLite fallback) or set REDIS_URL to a running Redis instance URL such as redis://localhost:6379.

HITL approval dialogs not appearing

HITL workflows require an MCP client that supports interactive tool confirmation. Ensure your client version supports this. For Claude Desktop, update to the latest version. HITL is configured programmatically via the hitl.requireApproval option.

Frequently Asked Questions about Neurolink

What is Neurolink?

Neurolink is a Model Context Protocol (MCP) server that ๐Ÿ“‡ โ˜๏ธ ๐Ÿ  ๐ŸŽ ๐ŸชŸ ๐Ÿง - making enterprise ai infrastructure universally accessible. edge-first platform unifying 12 providers and 100+ models with multi-agent orchestration, hitl workflows, guardrails middleware, and context summarization. It connects AI assistants to external tools and data sources through a standardized interface.

How do I install Neurolink?

Install via npm with the command: npx -y @juspay/neurolink. Then add the server configuration to your AI client's JSON config file (e.g., claude_desktop_config.json or .cursor/mcp.json).

Which AI clients work with Neurolink?

Neurolink works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is Neurolink free to use?

Yes, Neurolink is open source and available under the MIT license. You can use it freely in both personal and commercial projects.

Browse More Cloud Services MCP Servers

Explore all cloud services servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "neurolink": { "command": "npx", "args": ["-y", "@juspay/neurolink"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide โ†’

Ready to use Neurolink?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides