Grasp MCP Server

๐ŸŒ Browser App  ยท  ๐Ÿ“ฆ MCP Server  ยท  ๐Ÿ› Report Bug  ยท  โœจ Request Feature  ยท  ๐Ÿ”’ Privacy

Remote serverstreamable-httpPython

What is the Grasp MCP server?

Grasp MCP server exists for a simple reason โ€” assistants are far more useful when they can act on Grasp directly instead of describing what you should do. ๐ŸŒ Browser App ย ยทย  ๐Ÿ“ฆ MCP Server ย ยทย  ๐Ÿ› Report Bug ย ยทย  โœจ Request Feature ย ยทย  ๐Ÿ”’ Privacy.

Setting it up

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

What the assistant can call

Once Grasp is connected, these are the calls the assistant has available:

  • Supply โ€” chain integrity** โ€” local checks (no network): npm lockfile sha512 integrity field coverage, go.sum alongside go.mod, Cargo.lock alongside
  • Capability โ€” Grasp
  • IDE โ€” Install
  • JetBrains โ€” JetBrains Marketplace โ€” search Grasp in Settings โ†’ Plugins
  • Raycast โ€” Raycast Store โ€” or search Grasp in the Raycast extension store
  • Zed โ€” Zed Extensions โ€” or search grasp in Zed โ†’ Extensions
  • Browser โ€” Install
  • Chrome โ€” Chrome Web Store
  • Firefox โ€” Firefox Add-ons โ€” ID: grasp@ashforde.org
  • Safari โ€” GitHub Releases โ€” see sideload instructions
  • Channel โ€” Status
  • Cursor โ€” Add grasp-mcp-server to ~/.cursor/mcp.json

Configuration and credentials

You will need one environment variable: GRASP_NVD_API_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Before you rely on it

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Grasp.
  • Missing credentials fail quietly in some clients โ€” if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the grasp mcp server does with a few real requests.

Choosing this one

This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Grasp's toolset โ€” Supply, Capability, IDE and 11 more โ€” is a fair guide to whether it matches your workflow. It is maintained by ashfordeou; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Grasp's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Available tools

ToolWhat it does
Supplychain integrity** โ€” local checks (no network): npm lockfile sha512 integrity field coverage, go.sum alongside go.mod, Cargo.lock alongside Cargo.toml, --hash= pinning in requirements.txt.
CapabilityGrasp
IDEInstall
JetBrains[JetBrains Marketplace](https://plugins.jetbrains.com/plugin/31362-grasp--code-architecture-visualizer) โ€” search **Grasp** in Settings โ†’ Plugins
Raycast[Raycast Store](https://www.raycast.com/ashfordeOU/grasp) โ€” or search **Grasp** in the Raycast extension store
Zed[Zed Extensions](https://zed.dev/extensions?query=grasp) โ€” or search **grasp** in Zed โ†’ Extensions
BrowserInstall
Chrome[Chrome Web Store](https://chromewebstore.google.com/detail/grasp-%E2%80%94-code-architecture/pipmlammandfhfbodllcjolgeolkhapj)
Firefox[Firefox Add-ons](https://addons.mozilla.org/firefox/addon/grasp-code-architecture) โ€” ID: grasp@ashforde.org
Safari[GitHub Releases](https://github.com/ashfordeOU/grasp/releases) โ€” see [sideload instructions](#safari-sideload)
ChannelStatus
CursorAdd grasp-mcp-server to ~/.cursor/mcp.json
WindsurfMCP config
Continuecontinue-provider package

How to install the Grasp MCP server

{
  "mcpServers": {
    "grasp": {
      "command": "npx",
      "args": ["-y", "grasp-mcp-server"],
      "env": {
        "GRASP_NVD_API_KEY": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
GRASP_NVD_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • โ€œUse Grasp to Supply.โ€
  • โ€œUse Grasp to Capability.โ€
  • โ€œUse Grasp to IDE.โ€

Frequently asked questions

It connects Grasp to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (Supply, Capability, IDE, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Grasp directly.