Skip to main content
ClaudeWave
manuvamp avatar
manuvamp

orano-mcp-examples

View on GitHub
MCP ServersOfficial Registry0 stars0 forksUpdated 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.
Use cases

MCP Servers overview

# 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"
```

What people ask about orano-mcp-examples

What is manuvamp/orano-mcp-examples?

+

manuvamp/orano-mcp-examples is mcp servers for the Claude AI ecosystem with 0 GitHub stars.

How do I install orano-mcp-examples?

+

You can install orano-mcp-examples by cloning the repository (https://github.com/manuvamp/orano-mcp-examples) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is manuvamp/orano-mcp-examples safe to use?

+

Our security agent has analyzed manuvamp/orano-mcp-examples and assigned a Trust Score of 52/100 (tier: OK). See the full breakdown of passed checks and flags on this page.

Who maintains manuvamp/orano-mcp-examples?

+

manuvamp/orano-mcp-examples is maintained by manuvamp. The last recorded GitHub activity is dated 2026-09-19, with 0 open issues.

Are there alternatives to orano-mcp-examples?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy orano-mcp-examples to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

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>

More MCP Servers

orano-mcp-examples alternatives