claudegoodies
MCP Server

@modelcontextprotocol/servers

From modelcontextprotocol

Model Context Protocol servers

Bundles four MCP servers: everything, memory, filesystem, and sequential-thinking.

Use it when

  • Need filesystem access via MCP (server-filesystem)
  • Need a memory/knowledge-store MCP server
  • Need a sequential-thinking reasoning MCP server
  • Want a reference/test MCP server (server-everything)

Skip it if

  • Source is just a package.json listing sub-packages, no behavior details given
  • Each server is a separate workspace you'd likely install individually instead

Install

claude mcp add @modelcontextprotocol/servers -- npx -y @modelcontextprotocol/servers

Facts

Status
Actively maintained
Last commit
Source file
package.json

Source preview

The instructions Claude Code reads when this mcp server runs.

{
  "name": "@modelcontextprotocol/servers",
  "private": true,
  "version": "0.6.2",
  "description": "Model Context Protocol servers",
  "license": "SEE LICENSE IN LICENSE",
  "author": "Model Context Protocol a Series of LF Projects, LLC.",
  "homepage": "https://modelcontextprotocol.io",
  "bugs": "https://github.com/modelcontextprotocol/servers/issues",
  "type": "module",
  "workspaces": [
    "src/*"
  ],
  "files": [],
  "scripts": {
    "build": "npm run build --workspaces",
    "watch": "npm run watch --workspaces",
    "publish-all": "npm publish --workspaces --access public",
    "link-all": "npm link --workspaces"
  },
  "dependencies": {
    "@modelcontextprotocol/server-everything": "*",
    "@modelcontextprotocol/server-memory": "*",
    "@modelcontextprotocol/server-filesystem": "*",
    "@modelcontextprotocol/server-sequential-thinking": "*"
  },
  "overrides": {
    "qs": ">=6.15.2",
    "hono": ">=4.12.21"
  }
}
View full source on GitHub →

Other mcp servers