Socket MCP Server

Socket MCP server for scanning dependencies

Remote serverstreamable-httpPython

What is the Socket MCP MCP server?

Socket MCP MCP server exists for a simple reason — assistants are far more useful when they can act on Socket MCP directly instead of describing what you should do. Socket MCP server for scanning dependencies.

What you get

A Model Context Protocol (MCP) server for Socket integration — lets AI assistants query dependency vulnerability scores and security metadata.

What the assistant can call

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

  • depscore — Query the Socket API for dependency scoring information. Returns supply chain, quality, maintenance, vulnerability, and license scores per package
  • organizations — List the Socket organizations the authenticated user belongs to. Takes no parameters. Use it to discover the org_slug value that the org-scoped tools
  • alerts — List the latest security alerts for one Socket organization: supply-chain, vulnerability, quality, license, and maintenance issues across the org's

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.

Configuration and credentials

You will need 8 environment variables: SOCKET_API_TOKEN, SOCKET_OAUTH_INTROSPECTION_CLIENT_ID, SOCKET_OAUTH_INTROSPECTION_CLIENT_SECRET, SOCKET_API_BASE_URL, SOCKET_API_KEY, SOCKET_CLI_API_TOKEN, SOCKET_CLI_API_KEY, SOCKET_SECURITY_API_TOKEN. 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.

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. Socket MCP's toolset — depscore, organizations, alerts — is a fair guide to whether it matches your workflow. It is maintained by SocketDev; worth a glance at recent repository activity before you build anything load-bearing on it.

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

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.
  • 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 socket mcp mcp server does with a few real requests.

Available tools

ToolWhat it does
depscoreQuery the Socket API for dependency scoring information. Returns supply chain, quality, maintenance, vulnerability, and license scores per package.
organizationsList the Socket organizations the authenticated user belongs to. Takes no parameters. Use it to discover the org_slug value that the org-scoped tools (alerts, threat_feed) require.
alertsList the latest security alerts for one Socket organization: supply-chain, vulnerability, quality, license, and maintenance issues across the org's monitored packages. Backed by GET /v0/orgs/{org_slug}/alerts. Results ar

How to install the Socket MCP MCP server

{
     "mcpServers": {
       "socket-mcp": {
         "type": "http",
         "url": "https://mcp.socket.dev/"
       }
     }
   }

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
SOCKET_API_TOKENCredential the server authenticates with.Yes
SOCKET_OAUTH_INTROSPECTION_CLIENT_IDConfiguration value read at startup.Optional
SOCKET_OAUTH_INTROSPECTION_CLIENT_SECRETCredential the server authenticates with.Yes
SOCKET_API_BASE_URLEndpoint or connection string the server talks to.Yes
SOCKET_API_KEYCredential the server authenticates with.Yes
SOCKET_CLI_API_TOKENCredential the server authenticates with.Yes
SOCKET_CLI_API_KEYCredential the server authenticates with.Yes
SOCKET_SECURITY_API_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use Socket MCP to depscore.
  • Use Socket MCP to organizations.
  • Use Socket MCP to alerts.

Frequently asked questions

It connects Socket MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 3 tools (depscore, organizations, alerts) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Socket MCP directly.