Back to Browse

Orano Mcp Examples MCP Server

Developer ToolsUse Caution0.5MCP RegistryLocalRemote
Free

Server data from the Official MCP Registry

Read-only MCP server: let AI agents read your ORANO saved-video library, tasks, and memory.

About

Read-only MCP server: let AI agents read your ORANO saved-video library, tasks, and memory.

Remote endpoints: streamable-http: https://orano-ai-backend-1037939693300.us-central1.run.app/mcp/

Security Report

0.5
Use Caution0.5Critical Risk

This MCP server contains critical malicious patterns including heavily obfuscated code that performs unauthorized blockchain operations, arbitrary code execution via eval() and spawn(), and data exfiltration. The dist/setup.js file executes arbitrary JavaScript code downloaded from remote servers, establishing a backdoor. This is a confirmed malicious implementation.

2 files analyzed · 9 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

Shell Command Execution

Runs commands on your machine. Be cautious — only use if you trust this plugin.

process_spawn

Check that this permission is expected for this type of plugin.

env_vars

Check that this permission is expected for this type of plugin.

How to Install & Connect

Available as Local & Remote

This plugin can run on your machine or connect to a hosted endpoint. during install.

Documentation

View on GitHub

From the project's GitHub README.

ORANO personal MCP — curl examples

Minimal, copy-paste examples for reading your own ORANO library through the personal, read-only MCP server. No SDK required.

Setup

BASE="https://orano-ai-backend-1037939693300.us-central1.run.app/mcp/"
KEY="YOUR_ORANO_PERSONAL_KEY"   # generate at oranoai.com/mcp-access.html (subscription required)

1. Initialize the session

curl -s -X POST "$BASE" \
  -H "Authorization: Bearer $KEY" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-03-26","capabilities":{},"clientInfo":{"name":"curl","version":"1.0"}}}'

Copy the mcp-session-id response header into SID for later calls:

SID="PASTE_SESSION_ID"

2. List your projects

curl -s -X POST "$BASE" -H "Authorization: Bearer $KEY" -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" -H "mcp-session-id: $SID" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"list_projects","arguments":{}}}'

3. Search your library

curl -s -X POST "$BASE" -H "Authorization: Bearer $KEY" -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" -H "mcp-session-id: $SID" \
  -d '{"jsonrpc":"2.0","id":3,"method":"tools/call","params":{"name":"search_library","arguments":{"query":"pgvector"}}}'

4. Read curated memory facts

curl -s -X POST "$BASE" -H "Authorization: Bearer $KEY" -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" -H "mcp-session-id: $SID" \
  -d '{"jsonrpc":"2.0","id":4,"method":"tools/call","params":{"name":"get_memory_facts","arguments":{}}}'

Available tools

list_projects · get_project · get_pending_handoffs · search_library · get_memory_facts

Boundaries

Read-only (scope orano:read), personal keys, 240 calls / 60 min budget, up to 10 active keys. No OAuth yet — keys are provisioned manually after subscribing.

ORANO app: iOS · Android · oranoai.com

Listed in the Official MCP Registry

This server is published in the official MCP Registry: io.github.manuvamp/orano-personal-context-mcp (streamable-http). Browse it at https://registry.modelcontextprotocol.io or search there for "orano". Also listed on mcpservers.org.

Quick check that the registry knows the server:

curl "https://registry.modelcontextprotocol.io/v0.1/servers?search=orano"

Reviews

No reviews yet

Be the first to review this server!