Skip to main content
ClaudeWave
manuvamp avatar
manuvamp

orano-mcp-examples

Ver en GitHub
MCP ServersRegistry oficial0 estrellas0 forksActualizado today
ClaudeWave Trust Score
52/100
· OK
Passed
  • Actively maintained (<30d)
  • Documented (README)
Flags
  • !No standard license detected
  • !No description
Last scanned: 9/20/2026
Install in Claude Code / Claude Desktop
Method: Manual
Claude Code CLI
git clone https://github.com/manuvamp/orano-mcp-examples
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "orano-mcp-examples": {
      "command": "node",
      "args": ["/path/to/orano-mcp-examples/dist/index.js"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Clone https://github.com/manuvamp/orano-mcp-examples and follow its README for install instructions.
Casos de uso

Resumen de MCP Servers

# 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.

- Endpoint & auth format: https://oranoai.com/mcp.json
- Overview: https://oranoai.com/mcp
- Key management: https://oranoai.com/mcp-access.html

## Setup

```bash
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

```bash
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:

```bash
SID="PASTE_SESSION_ID"
```

## 2. List your projects

```bash
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

```bash
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

```bash
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](https://apps.apple.com/us/app/orano-ai/id6791454509) · [Android](https://play.google.com/store/apps/details?id=com.oranoai.app) · [oranoai.com](https://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:

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

Lo que la gente pregunta sobre orano-mcp-examples

¿Qué es manuvamp/orano-mcp-examples?

+

manuvamp/orano-mcp-examples es mcp servers para el ecosistema de Claude AI con 0 estrellas en GitHub.

¿Cómo se instala orano-mcp-examples?

+

Puedes instalar orano-mcp-examples clonando el repositorio (https://github.com/manuvamp/orano-mcp-examples) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar manuvamp/orano-mcp-examples?

+

Nuestro agente de seguridad ha analizado manuvamp/orano-mcp-examples y le ha asignado un Trust Score de 52/100 (tier: OK). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene manuvamp/orano-mcp-examples?

+

manuvamp/orano-mcp-examples es mantenido por manuvamp. La última actividad registrada en GitHub es del 2026-09-19, con 0 issues abiertos.

¿Hay alternativas a orano-mcp-examples?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega orano-mcp-examples en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: manuvamp/orano-mcp-examples
[![Featured on ClaudeWave](https://claudewave.com/api/badge/manuvamp-orano-mcp-examples)](https://claudewave.com/repo/manuvamp-orano-mcp-examples)
<a href="https://claudewave.com/repo/manuvamp-orano-mcp-examples"><img src="https://claudewave.com/api/badge/manuvamp-orano-mcp-examples" alt="Featured on ClaudeWave: manuvamp/orano-mcp-examples" width="320" height="64" /></a>

Más MCP Servers

Alternativas a orano-mcp-examples