Elnora Mcp Server banner
Elnora-AI Elnora-AI

Elnora Mcp Server

AI community

Description

Elnora MCP Server — connect AI agents to the Elnora bioprotocol platform

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Elnora MCP Server

Connect AI agents to the [Elnora](https://elnora.ai) bioprotocol optimization platform via the [Model Context Protocol](https://modelcontextprotocol.io).

[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](LICENSE)

What is Elnora?

Elnora is an AI-powered platform that helps researchers generate, optimize, and manage bioprotocols for wet-lab experiments. With this MCP server, you can interact with Elnora directly from AI coding assistants like Claude Code, Cursor, VS Code, Codex, and ChatGPT.

Quick Start

Add the Elnora MCP server to your AI client. No installation required — just point to the remote URL.

**Setting this up from inside a coding agent?** See [INSTALL_FOR_AGENTS.md](INSTALL_FOR_AGENTS.md) for a step-by-step, self-verifying runbook (client config, auth, and a smoke test).

Claude Code

claude mcp add elnora --transport http --scope user https://mcp.elnora.ai/mcp

**Installation scopes:**

Scope Flag Where it's stored Best for
User --scope user ~/.claude.json Available in all your projects (recommended)
Local --scope local Current project config Single-project use (default if omitted)
Project --scope project .mcp.json in project root Team sharing via version control

Cursor

Add to your Cursor MCP settings (Settings > MCP Servers):

{
  "mcpServers": {
    "elnora": {
      "url": "https://mcp.elnora.ai/mcp"
    }
  }
}

VS Code (Copilot)

Add to your `.vscode/mcp.json`:

{
  "servers": {
    "elnora": {
      "type": "http",
      "url": "https://mcp.elnora.ai/mcp"
    }
  }
}

Codex

codex --mcp-config mcp.json

With `mcp.json`:

{
  "mcpServers": {
    "elnora": {
      "url": "https://mcp.elnora.ai/mcp"
    }
  }
}

ChatGPT

Add as a remote MCP server in ChatGPT settings using the URL `https://mcp.elnora.ai/mcp`.