Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.openori.dev/llms.txt

Use this file to discover all available pages before exploring further.

OpenOri runs a local MCP (Model Context Protocol) server on localhost:4141. This lets other tools use OpenOri’s capabilities — memory, tools, and intelligence.

What this enables

ToolHow it uses OpenOri
CursorAsk OpenOri questions directly from your editor
VS CodeUse OpenOri as an AI backend with memory
CLI scriptsCall OpenOri from shell scripts and automation
Custom toolsAny MCP-compatible client can connect

Exposed tools

The MCP server exposes 7 tools:
ToolDescription
ask_oriSend a natural language query to OpenOri
readRead files or directories
writeCreate or modify files
runExecute shell commands
searchSearch the web
crawlExtract content from URLs
systemGet system information

Connecting from Cursor

Add to your Cursor MCP config:
{
  "mcpServers": {
    "ori": {
      "url": "http://127.0.0.1:4141/mcp"
    }
  }
}

Connecting from VS Code

Add to your VS Code settings:
{
  "mcp": {
    "servers": {
      "ori": {
        "url": "http://127.0.0.1:4141/mcp"
      }
    }
  }
}

Connecting via CLI

# Health check
curl http://127.0.0.1:4141/

# MCP endpoint (POST)
curl -X POST http://127.0.0.1:4141/mcp \
  -H "Content-Type: application/json" \
  -d '{"method": "tools/call", "params": {"name": "ask_ori", "arguments": {"query": "What time zone am I in?"}}}'
The MCP server only accepts connections from localhost. It’s not exposed to the network — only tools running on your machine can connect.