New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@openweave/weave-lint

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@openweave/weave-lint

WeaveLint — Orphan code detector with AST analysis

latest
npmnpm
Version
0.2.0
Version published
Maintainers
1
Created
Source

WeaveLink — The MCP Server that connects OpenWeave to any compatible AI client.

Part of the OpenWeave monorepo.

What it does

WeaveLink implements the Model Context Protocol (MCP) to expose OpenWeave's memory and planning tools to any compatible client:

  • Claude Desktop — native MCP support
  • Cursor — via MCP config
  • Cline — via MCP config
  • Any MCP-compatible client

Available MCP Tools

ToolDescription
save_graph_nodePersist a memory node (concept, decision, error) to the session graph
query_graphRetrieve nodes relevant to a query from long-term memory
suppress_nodeMark a node as erroneous and record its correction
update_roadmapWrite the current milestone plan to roadmap.md
get_session_contextLoad full session state: graph summary + roadmap + error patterns

Quick Setup

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "openweave": {
      "command": "npx",
      "args": ["-y", "@openweave/weave-link"],
      "env": {
        "OPENWEAVE_STORAGE": "/path/to/your/sessions"
      }
    }
  }
}

Cursor

Add to .cursor/mcp.json in your project root:

{
  "mcpServers": {
    "openweave": {
      "command": "npx",
      "args": ["-y", "@openweave/weave-link"],
      "env": {
        "OPENWEAVE_STORAGE": "./.openweave"
      }
    }
  }
}

Cline (VS Code)

In Cline settings → MCP Servers → Add:

{
  "name": "openweave",
  "command": "npx -y @openweave/weave-link",
  "env": { "OPENWEAVE_STORAGE": "./.openweave" }
}

Environment Variables

VariableDefaultDescription
OPENWEAVE_STORAGE./openweave-sessionsRoot directory for session persistence
OPENWEAVE_LOG_LEVELinfoLog verbosity: debug, info, warn, error

Docker

docker run -v $(pwd)/sessions:/sessions \
  -e OPENWEAVE_STORAGE=/sessions \
  ghcr.io/openweave/weave-link:latest

Installation

# Use directly via npx (no install needed)
npx @openweave/weave-link

# Or install globally
npm install -g @openweave/weave-link
weave-link start

Keywords

weave

FAQs

Package last updated on 24 Feb 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts