MCP server intelligence profile

Augments MCP Server

A next-generation framework documentation provider for Claude Code via Model Context Protocol (MCP). Returns types + prose + examples with context-aware formatting for any npm package — not just curated ones

Local OnlyOfficial distributionaugmnt
Verified cleanNpm · 7.1.0

Our scanner tested version 7.1.0 without proving a finding in the methods exercised. This is not a guarantee that every deployment is secure.

1Distribution channel
8Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

Install @augmnt-sh/augments-mcp-server from npm

Version 7.1.0 declares 1 executable entrypoint.

npm install --save-exact @augmnt-sh/augments-mcp-server@7.1.0
npx -y -p @augmnt-sh/augments-mcp-server@7.1.0 @augmnt-sh/augments-mcp-server
MCP client configuration example
{
  "mcpServers": {
    "@augmnt-sh/augments-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "@augmnt-sh/augments-mcp-server@7.1.0",
        "@augmnt-sh/augments-mcp-server"
      ]
    }
  }
}

Identity

Canonical slugaugments-mcp-server-7b1494baDeploymentLocal Only
Canonical packagenpm:@augmnt-sh/augments-mcp-serverRepositoryaugmnt/augments-mcp-server
First publishedLatest release
Last security verificationClassification confidence90%
PublicationPublishedOfficial distributionYes

Distributions

ChannelIdentifierCurrent versionVersionsSource
npm@augmnt-sh/augments-mcp-server7.1.03Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npm@augmnt-sh/augments-mcp-server7.1.0CurrentSep 5, 20268 toolsSucceeded · 1 resources · 0 promptsFailed
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

Provenanceartifact_hash_verifiedSignature
MCP SDK@modelcontextprotocol/sdk Artifact SHA-25689625306421ed9f34ef4c78ff08e424a63003bb8f871800050b01a82c6dcdf30
Scannermcp-proof-engine 0.1.0Scan completedAug 20, 2026
Security rating44 / 100Methodologyversion-rating-1.0
Executable entrypoints
[
  "@augmnt-sh/augments-mcp-server"
]
Rating reasons
[
  "security_policy_not_observed"
]

Current protocol inventory

2025-06-18Negotiated protocol
augments-mcp-serverServer-reported name
2Capability groups
Aug 17, 2026Observed

Tools 8

ToolCategoryAnnotationsRisk
compare_packagesCompare npm packages side-by-side: downloads, bundle size, dependencies, GitHub stars, exported APIs. Great for choosing between alternatives.
Input schema
{
  "type": "object",
  "properties": {
    "packages": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "minItems": 2,
      "maxItems": 5,
      "description": "Package names to compare (2-5)"
    },
    "criteria": {
      "type": "string",
      "description": "Focus area (e.g., \"bundle size\", \"popularity\")"
    }
  },
  "required": [
    "packages"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
diagnose_errorDiagnose an error message or stack trace. Matches against known error patterns, searches GitHub issues, and finds relevant documentation.
Input schema
{
  "type": "object",
  "properties": {
    "error": {
      "type": "string",
      "minLength": 1,
      "description": "The error message or stack trace to diagnose"
    },
    "package": {
      "type": "string",
      "description": "Package or framework the error is from"
    },
    "version": {
      "type": "string",
      "description": "Package version"
    }
  },
  "required": [
    "error"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
diagnosticsGet server health information: version, uptime, memory usage, cache statistics, and Node.js version.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {}
}
get_api_contextRECOMMENDED: Get precise API signatures, parameters, return types, prose documentation, and code examples for any npm package. Handles natural language like "react useEffect cleanup" or "how to use zustand". Always try this first.
Input schema
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "minLength": 1,
      "description": "Natural language query (e.g., \"useEffect cleanup\" or \"how to use prisma findMany\")"
    },
    "framework": {
      "type": "string",
      "description": "Specific framework to search in (e.g., \"react\", \"prisma\")"
    },
    "version": {
      "type": "string",
      "description": "Specific version (e.g., \"19.0.0\" or \"latest\")"
    },
    "includeExamples": {
      "type": "boolean",
      "default": true,
      "description": "Whether to include code examples"
    },
    "maxExamples": {
      "type": "number",
      "minimum": 0,
      "maximum": 5,
      "default": 2,
      "description": "Maximum number of examples to include"
    }
  },
  "required": [
    "query"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
get_migration_guideGet a detailed migration guide between package versions. Returns breaking changes, new features, deprecations, type diffs, and official migration docs.
Input schema
{
  "type": "object",
  "properties": {
    "package": {
      "type": "string",
      "minLength": 1,
      "description": "Package or framework name (e.g., \"react\", \"next\", \"prisma\")"
    },
    "fromVersion": {
      "type": "string",
      "minLength": 1,
      "description": "Version to migrate from (e.g., \"18\", \"14.0.0\")"
    },
    "toVersion": {
      "type": "string",
      "description": "Version to migrate to (defaults to latest)"
    }
  },
  "required": [
    "package",
    "fromVersion"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
get_version_infoGet version info, available versions, and breaking change detection for any npm package. Now includes actual breaking changes and new features from changelogs.
Input schema
{
  "type": "object",
  "properties": {
    "framework": {
      "type": "string",
      "minLength": 1,
      "description": "Framework or package name"
    },
    "fromVersion": {
      "type": "string",
      "description": "Compare from this version"
    },
    "toVersion": {
      "type": "string",
      "description": "Compare to this version"
    }
  },
  "required": [
    "framework"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
scan_project_depsScan project dependencies for outdated packages, major updates, deprecated packages, and security advisories. Reads package.json.
Input schema
{
  "type": "object",
  "properties": {
    "packageJsonPath": {
      "type": "string",
      "description": "Path to package.json (defaults to ./package.json)"
    },
    "checkTypes": {
      "type": "array",
      "items": {
        "type": "string",
        "enum": [
          "updates",
          "deprecated",
          "security"
        ]
      },
      "description": "Types of checks to run"
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
search_apisSearch for APIs across multiple frameworks when you don't know the exact name. Supports concept search like 'state management' which matches useState, createStore, atom, etc.
Input schema
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "minLength": 1,
      "description": "Search query (e.g., \"state management hook\" or \"form validation\")"
    },
    "frameworks": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Limit search to specific frameworks"
    },
    "limit": {
      "type": "number",
      "minimum": 1,
      "maximum": 20,
      "default": 5,
      "description": "Maximum results per framework"
    }
  },
  "required": [
    "query"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Resources 1

  • frameworksaugments://frameworks

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

Augments MCP Server questions

How do I install Augments MCP Server?

Install the selected package version with: npm install --save-exact @augmnt-sh/augments-mcp-server@7.1.0

What tools does Augments MCP Server provide?

Augments MCP Server exposed 8 tools during independent protocol observation, including compare_packages, diagnose_error, diagnostics, get_api_context, get_migration_guide, get_version_info, scan_project_deps, search_apis.

Is Augments MCP Server secure?

Our scanner tested version 7.1.0 without proving a finding in the methods exercised. This is not a guarantee that every deployment is secure.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.