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

@agent-workspace/mcp-server

v0.9.0

Published

MCP server exposing Agent Workspace Protocol operations — plug any AWP workspace into any MCP client

Readme

@agent-workspace/mcp-server

MCP server for the Agent Workspace Protocol — plug any AWP workspace into Claude Code, Cursor, or any MCP-compatible client.

Setup

Claude Code

claude mcp add awp-workspace -- npx @agent-workspace/mcp-server

With a specific workspace path

AWP_WORKSPACE=/path/to/workspace npx @agent-workspace/mcp-server

Generic MCP client

The server communicates over stdio using the Model Context Protocol. Point any MCP client at:

npx @agent-workspace/mcp-server

It will auto-discover the AWP workspace from the current directory (or use AWP_WORKSPACE env var).

Tools

Core Identity & Context

| Tool | Description | |------|-------------| | awp_read_identity | Read agent identity (name, capabilities, DID) | | awp_read_soul | Read behavioral constraints (values, boundaries, governance) | | awp_read_user | Read human profile | | awp_read_agents | Read operations config (AGENTS.md) | | awp_read_tools | Read tools config (TOOLS.md) | | awp_read_heartbeat | Read heartbeat config (HEARTBEAT.md) |

Memory Operations

| Tool | Description | |------|-------------| | awp_read_memory | Read memory (daily, longterm, or recent logs) | | awp_write_memory | Log structured memory entries to daily log |

Knowledge Artifacts (SMP)

| Tool | Description | |------|-------------| | awp_artifact_read | Read a knowledge artifact by slug | | awp_artifact_write | Create or update a knowledge artifact with versioning | | awp_artifact_list | List all artifacts (optional tag filter) | | awp_artifact_search | Search artifacts by content, title, or tags |

Reputation (RDP)

| Tool | Description | |------|-------------| | awp_reputation_query | Query reputation profiles with time-based decay applied | | awp_reputation_signal | Log reputation signals (uses EWMA with decay) |

Delegation Contracts (RDP)

| Tool | Description | |------|-------------| | awp_contract_create | Create delegation contracts between agents | | awp_contract_evaluate | Evaluate contracts and generate reputation signals | | awp_contract_list | List all contracts with optional status filter |

Workspace Management

| Tool | Description | |------|-------------| | awp_workspace_status | Workspace health check (files present, stats) |

How It Works

The MCP server reads and writes AWP workspace files directly — no database, no daemon. Your agent's identity, memory, knowledge artifacts, and reputation profiles are just Markdown files with YAML frontmatter, stored in a directory and compatible with Git.

When an AI agent connects via MCP, it can:

  • Read its identity, soul, and user context at the start of each session
  • Write memory entries as it works
  • Create and update knowledge artifacts with full provenance tracking
  • Search its accumulated knowledge
  • Query and update reputation profiles for itself and other agents
  • Create and evaluate delegation contracts for multi-agent coordination

Part of AWP

This package is part of the Agent Workspace Protocol monorepo:

| Package | Description | |---------|-------------| | @agent-workspace/core | Types, constants, JSON schemas | | @agent-workspace/cli | CLI tool | | @agent-workspace/mcp-server | MCP server |

License

Apache-2.0