# Project Context (npm · @sandovalrr/project-context-mcp)

Safely manage repository-scoped issues across Linear, GitHub Issues, and Jira Cloud.

- Trust score: 81/100 (high trust)
- Change this week: −9
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `@sandovalrr/project-context-mcp`: 81/100 (this document), [markdown](https://verifymcp.io/servers/sandovalrr-project-context/sandovalrr-project-context-mcp.md), [page](https://verifymcp.io/servers/sandovalrr-project-context/sandovalrr-project-context-mcp)

## Channel facts

- Registry: `npm`
- Package: `@sandovalrr/project-context-mcp`
- Version: `0.4.0`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 100/100
  - No malware found by supply-chain analysis.
  - No known CVEs affecting this package version or its production dependencies.
  - No install/post-install scripts declared.
  - No production dependencies, so there is no dependency health to assess.
- **Provenance & Transparency**: 97/100
  - Source repository is publicly reachable at the declared URL.
  - Cryptographically verified build provenance (signed, bound to sandovalrr/project-context).
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 11 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 70/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 1160 tokens (~105/item across 11 items; 11 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 23/100
  - Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 90/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 63% of tool parameters carry a description.
  - Structured output schemas are declared (100% of tools); any adoption earns full credit.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add sandovalrr-project-context -- npx -y @sandovalrr/project-context-mcp
```

### Codex

```bash
codex mcp add sandovalrr-project-context -- npx -y @sandovalrr/project-context-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "sandovalrr-project-context": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@sandovalrr/project-context-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add sandovalrr-project-context --command npx --arg -y --arg @sandovalrr/project-context-mcp
```

### Hermes

```yaml
mcp_servers:
  sandovalrr-project-context:
    command: "npx"
    args: ["-y", "@sandovalrr/project-context-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "sandovalrr-project-context": {
      "command": "npx",
      "args": [
        "-y",
        "@sandovalrr/project-context-mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 81, +1)

No change was recorded against any check on this day. Stability & Change Management went from 20 to 23. That category is still filling its 30-day observation window: 6 days of observed history at the previous scan, 7 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-08-02 (score 80, +18)

- [security improvement] Malware scan: unverified → pass
- [functional improvement] Stability: unverified → 0.20

### 2026-07-31 (score 62, −10)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 72, −18)

- [security regression] Malware scan: pass → unverified

### 2026-07-27 (score 90, +31)

- [functional improvement] Tool coverage: unverified → 100
- [functional] First check of Schema quality: fail
- [functional] First check of Schema quality: pass
- [functional] First check of Schema quality: good
- [functional] First check of Tool coverage: 100
- [functional] First check of Tool coverage: 63

### 2026-07-26 (score 59)

First indexed and scored.

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

## MCP tools (11)

### `resolve_project_context` (~37 tokens)

Resolve project issue context

Resolve the configured issue providers for the current Git repository.

Input parameters:

- `cwd` (string): Git working directory; defaults to the server process cwd

Output parameters:

- `error` (object)
- `result` (object)

### `list_issues` (~140 tokens)

List issues

List issues ordered by most recently updated, optionally filtered by canonical status or target-scoped parent in the default, selected, or all configured providers.

Input parameters:

- `all` (boolean): List from all configured providers only when explicitly true
- `cwd` (string): Git working directory; defaults to the server process cwd
- `include_archived` (boolean): Include archived issues when the configured provider supports it
- `limit` (integer)
- `parent` (string): List direct subissues of this target-scoped parent issue
- `provider` (string): Explicit configured provider alias
- `statuses` (array): Unique canonical statuses; omission lists all statuses

Output parameters:

- `error` (object)
- `result` (array)

### `search_issues` (~92 tokens)

Search issues

Search issue titles and descriptions in the default or explicitly selected configured provider.

Input parameters:

- `all` (boolean): Search all configured providers only when explicitly true
- `cwd` (string): Git working directory; defaults to the server process cwd
- `limit` (integer)
- `provider` (string): Explicit configured provider alias
- `query` (string, required): Title/description text only; not a status or structured filter

Output parameters:

- `error` (object)
- `result` (array)

### `list_users` (~85 tokens)

List assignable users

List active users assignable to issues in the configured target. Pass a returned assignee value unchanged when preparing a create or update.

Input parameters:

- `all` (boolean): List from all configured providers only when explicitly true
- `cwd` (string): Git working directory; defaults to the server process cwd
- `limit` (integer)
- `provider` (string): Explicit configured provider alias

Output parameters:

- `error` (object)
- `result` (array)

### `search_users` (~99 tokens)

Search assignable users

Search active users assignable to issues by name, username, or email where the configured provider exposes those fields. Return every match and ask the user to choose when ambiguous.

Input parameters:

- `all` (boolean): Search all configured providers only when explicitly true
- `cwd` (string): Git working directory; defaults to the server process cwd
- `limit` (integer)
- `provider` (string): Explicit configured provider alias
- `query` (string, required)

Output parameters:

- `error` (object)
- `result` (array)

### `search_issue_options` (~101 tokens)

Search issue options

Search target-scoped labels, priorities, issue types, cycles, or milestones. Pass returned option values unchanged and treat truncated results as incomplete.

Input parameters:

- `all` (boolean): Search all configured providers only when explicitly true
- `cwd` (string): Git working directory; defaults to the server process cwd
- `field` (string, required)
- `limit` (integer)
- `provider` (string): Explicit configured provider alias
- `query` (string, required)

Output parameters:

- `error` (object)
- `result` (array)

### `get_issue_capabilities` (~79 tokens)

Get issue capabilities

Get supported issue fields, exact reusable options, configured canonical statuses, defaults, and named creation presets for the configured target.

Input parameters:

- `all` (boolean): Get capabilities from all configured providers only when explicitly true
- `cwd` (string): Git working directory; defaults to the server process cwd
- `provider` (string): Explicit configured provider alias

Output parameters:

- `error` (object)
- `result` (array)

### `get_issue` (~82 tokens)

Get issue

Get one issue using deterministic URL, qualified-reference, or identifier routing.

Input parameters:

- `cwd` (string): Git working directory; defaults to the server process cwd
- `include_relations` (boolean): Include target-validated parent, subissue, blocking, related, and duplicate relations
- `provider` (string): Explicit configured provider alias
- `reference` (string, required)

Output parameters:

- `error` (object)
- `result` (object)

### `list_issue_comments` (~81 tokens)

List issue comments

List target-scoped issue comments newest first. This returns comments only, not field history or a full activity timeline, and rejects GitHub pull requests.

Input parameters:

- `cwd` (string): Git working directory; defaults to the server process cwd
- `limit` (integer)
- `provider` (string): Explicit configured provider alias
- `reference` (string, required)

Output parameters:

- `error` (object)
- `result` (object)

### `prepare_issue_change` (~153 tokens)

Preview issue change

Resolve, validate, and preview an issue write. Returns a token valid for ten minutes; does not change the external provider.

Input parameters:

- `body` (string)
- `comment_id` (string): Edit this existing comment after verifying it belongs to the target issue
- `cwd` (string): Git working directory; defaults to the server process cwd
- `fields` (object)
- `identifier` (string)
- `operation` (string, required)
- `parent_comment_id` (string): Reply to this comment after verifying it belongs to the target issue
- `preset` (string)
- `provider` (string): Explicit configured provider alias
- `status` (string)
- `target_url` (string)

Output parameters:

- `error` (object)
- `result` (object)

### `apply_issue_change` (~55 tokens)

Apply previewed issue change

Apply a previously previewed external issue change after revalidating repository, config, identity, and issue version.

Input parameters:

- `cwd` (string): Git working directory; defaults to the server process cwd
- `token` (string, required)

Output parameters:

- `error` (object)
- `result` (object)

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/sandovalrr-project-context/sandovalrr-project-context-mcp#diagnostics

## Score history

- 2026-08-03: 81
- 2026-08-02: 80
- 2026-08-01: 62
- 2026-07-31: 62
- 2026-07-30: 72
- 2026-07-28: 90
- 2026-07-27: 90
- 2026-07-26: 59

## Links

- npm package: https://www.npmjs.com/package/@sandovalrr/project-context-mcp
- Socket report: https://socket.dev/npm/package/@sandovalrr/project-context-mcp
- Repository: https://github.com/sandovalrr/project-context
- Changelog RSS feed: https://verifymcp.io/servers/sandovalrr-project-context/sandovalrr-project-context-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/sandovalrr-project-context/sandovalrr-project-context-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/sandovalrr-project-context/sandovalrr-project-context-mcp
