Smithery Reference Servers MCP Server

Model Context Protocol servers

Remote serverstreamable-httpPython

What is the Smithery Reference Servers MCP server?

Smithery reference servers mcp server connects Smithery Reference Servers to AI assistants that speak the Model Context Protocol. Model Context Protocol servers.

What Smithery Reference Servers does

This repository is a collection of reference implementations for the Model Context Protocol (MCP), as well as references to community built servers and additional resources.

Installing the smithery reference servers mcp server

The server is distributed via npm as @modelcontextprotocol/server-memory, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Configuration

Before the server will start you need to supply 2 environment variables: GITHUB_PERSONAL_ACCESS_TOKEN, YOUR_TOKEN. Keep credentials in your client's env block or a secrets manager rather than committing them.

Where it fits

Developer-tool servers are usually the first ones people connect, because they turn "help me with this code" into an assistant that can actually read the repo and act on it. Smithery Reference Servers sits in that group. Worth comparing against the other developer tools servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This is a hosted server — you point your client at an endpoint rather than running a local process, so there is nothing to keep updated on your machine.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • Maintained by AndyManastorm, written in Python.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the smithery reference servers mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

How to install the Smithery Reference Servers MCP server

{
  "mcpServers": {
    "smithery-reference-servers": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-memory"],
      "env": {
        "GITHUB_PERSONAL_ACCESS_TOKEN": "your-value",
        "YOUR_TOKEN": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
GITHUB_PERSONAL_ACCESS_TOKENCredential the server authenticates with.Yes
YOUR_TOKENCredential the server authenticates with.Yes

Frequently asked questions

It connects Smithery Reference Servers to MCP-compatible AI assistants such as Claude and Cursor. Instead of copying data back and forth by hand, the assistant works with Smithery Reference Servers directly.