npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

cielara-connector

v0.1.6

Published

Cielara MCP connector — installs an MCP server for Claude, Codex, and Cursor that connects to the Cielara knowledge graph, agent memory, and world model

Readme

Cielara Connector

cielara-connector installs the Cielara MCP server into local AI clients and keeps a browser-authorized Cielara connection refreshed.

Install

npm install -g cielara-connector
cielara login --url https://your-cielara.example.com
cielara install

or without a global install:

npx cielara-connector login --url https://your-cielara.example.com
npx cielara-connector install

cielara login opens a browser, runs OAuth authorization-code with PKCE against /api/iam/oauth/*, and stores the connection in:

~/.cielara/connector.json

cielara install writes MCP server entries for:

  • Codex: ~/.codex/config.toml
  • Claude Code: ~/.claude.json
  • Claude Desktop: platform-specific claude_desktop_config.json
  • Cursor: ~/.cursor/mcp.json

The installed MCP command is:

npx -y cielara-connector mcp

The mcp command refreshes the stored access token when it is close to expiration, prepares a Python virtualenv for the bundled MCP server, and then starts the server in stdio mode.

Commands

cielara login --url https://your-cielara.example.com
cielara install --target codex
cielara install --target claude
cielara install --target cursor
cielara status
cielara logout
cielara mcp

For local development from this repository, write app configs that point at the checked-out package instead of npm:

node connector/bin/cielara.js install --local

Configuration

Optional login flags:

  • --name <name>: store a named connection, default default
  • --auth-url <url>: override OAuth/admin URL
  • --backend-url <url>: override Cielara backend URL
  • --memory-url <url>: override Agent Memory URL; default is direct http://localhost:8001 when logging in via http://localhost:3100, otherwise <backend-url>/api/agent-memory
  • --world-model-url <url>: override Agent Fabric World Model base URL; default is <backend-url>/api/world-model (insights backend reverse proxy). Pass an empty value to disable the tool. Same override via env CIELARA_WORLD_MODEL_URL (empty disables).
  • --config <path>: override the credential file path

For the local docker/dev stack, this works from the frontend URL:

node connector/bin/cielara.js login --url http://localhost:3100

The connector detects the standard local split ports and uses:

  • OAuth/admin: http://localhost:8100
  • backend/MCP APIs: http://localhost:8080
  • memory API: http://localhost:8001 (direct to agent-memory), or <backend-url>/api/agent-memory when not using the local frontend URL
  • world model: http://localhost:8080/api/world-model (same reverse-proxy path as deployed)

Environment overrides used by the installed MCP server:

  • CIELARA_CONNECTOR_CONFIG
  • CIELARA_BACKEND_URL
  • MEMORY_API_URL (also CIELARA_MEMORY_API_URL at login to override defaults)
  • WORLD_MODEL_URL (also CIELARA_WORLD_MODEL_URL at login)
  • CIELARA_ACCESS_TOKEN
  • CIELARA_PYTHON