# AgentForge (npm · agentforge-mcp)

Turn rough requests into rigorously structured prompts, for any coding agent.

- Trust score: 65/100 (medium)
- Change this week: +22
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `agentforge-mcp`: 65/100 (this document), [markdown](https://verifymcp.io/servers/org-sciscale-agentforge-mcp/agentforge-mcp.md), [page](https://verifymcp.io/servers/org-sciscale-agentforge-mcp/agentforge-mcp)

## Channel facts

- Registry: `npm`
- Package: `agentforge-mcp`
- Version: `0.1.4`
- 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**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 71 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 57/100
  - AI-judged instruction clarity (good).
  - Context-footprint check failed: tool/resource definitions use about 408 tokens (~408/item across 1 items; 1 tools + 0 resources), over budget; trim descriptions and params.
  - 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**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% 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 org-sciscale-agentforge-mcp -- npx -y agentforge-mcp
```

### Codex

```bash
codex mcp add org-sciscale-agentforge-mcp -- npx -y agentforge-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "org-sciscale-agentforge-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "agentforge-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add org-sciscale-agentforge-mcp --command npx --arg -y --arg agentforge-mcp
```

### Hermes

```yaml
mcp_servers:
  org-sciscale-agentforge-mcp:
    command: "npx"
    args: ["-y", "agentforge-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "org-sciscale-agentforge-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "agentforge-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 65, +3)

- [functional improvement] Stability: unverified → 0.23

### 2026-08-02 (score 62, +44)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional regression] Security disclosure: fail → unverified
- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Schema quality: unverified → good
- [functional] First check of Schema quality: unverified
- [functional] Licence: MIT

### 2026-07-31 (score 18, −25)

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

### 2026-07-27 (score 43)

First indexed and scored.

## MCP tools (1)

### `agentforge_refine_prompt` (~408 tokens)

Refine a prompt with AgentForge

Turn a rough, plain-language coding request into a structured, tool-tuned prompt for an AI coding agent.

AgentForge extracts the real requirements, fills in missing edge cases, formats the prompt for the target agent's conventions, and runs it through a Quality Engine before returning it. Reach for this when a request is vague or under-specified and you want a sharper prompt before handing it to a coding agent.

Args:
  \- request (string, required): the coding task in plain language, 1-4000 chars.
  \- target_tool (string): one of claude-code, codex, cursor, aider, continue, windsurf, kimi, generic. Default: claude-code.
  \- style (string): plan-first, direct-edit, or explore-first. Default: plan-first.

Returns the refined prompt as text. structuredContent additionally carries:
  {
    "prompt": string,
    "tier": "free" | "pro",
    "quality": { "score": number, "max_score": number, "passed": boolean } | null,
    "usage": { "used_today": number, "limit": number | null }
  }

Errors are returned as text, e.g.:
  \- "API key not configured" — set AGENTFORGE_API_KEY.
  \- "invalid or revoked API key" (401) — check the key at agentforge.sciscale.org.
  \- "daily free limit reached" (429) — upgrade to Pro for unlimited calls.

Input parameters:

- `request` (string, required): The coding task or feature request, in plain language. Rough and under-specified is fine — that is exactly what gets refined.
- `style` (string): Execution style baked into the prompt: 'plan-first' plans before coding, 'direct-edit' makes the smallest change, 'explore-first' maps the codebase first.
- `target_tool` (string): The AI coding agent the prompt is formatted for.

Output parameters:

- `prompt` (string): The refined, tool-tuned prompt — hand this to your coding agent.
- `quality`: Quality Engine score, or null if scoring was unavailable.
- `tier` (string): Account tier that produced it: 'free' or 'pro'.
- `usage` (object): Today's usage for this account; 'limit' is null for unlimited Pro.

## Diagnostics

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

## Score history

- 2026-08-03: 65
- 2026-08-02: 62
- 2026-08-01: 18
- 2026-07-31: 18
- 2026-07-30: 43
- 2026-07-28: 43
- 2026-07-27: 43

## Links

- npm package: https://www.npmjs.com/package/agentforge-mcp
- Socket report: https://socket.dev/npm/package/agentforge-mcp
- Repository: https://github.com/sciscale-studio/agentforge-mcp
- Website: https://agentforge.sciscale.org/
- Changelog RSS feed: https://verifymcp.io/servers/org-sciscale-agentforge-mcp/agentforge-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/org-sciscale-agentforge-mcp/agentforge-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/org-sciscale-agentforge-mcp/agentforge-mcp
