Skip to content

docs: replace archived servers in example config with active ones#4495

Open
alvabillwu wants to merge 1 commit into
modelcontextprotocol:mainfrom
alvabillwu:fix/remove-archived-servers-from-examples
Open

docs: replace archived servers in example config with active ones#4495
alvabillwu wants to merge 1 commit into
modelcontextprotocol:mainfrom
alvabillwu:fix/remove-archived-servers-from-examples

Conversation

@alvabillwu

Copy link
Copy Markdown

The "Additional examples" Claude Desktop configuration in the README includes github and postgres server entries, but both of these servers are listed as archived in the same README's Archived section.

This replaces them with time and memory, which are active reference implementations, keeping the example relevant and not pointing users at unmaintained servers.

Before

{
  "mcpServers": {
    "filesystem": { ... },
    "git": { ... },
    "github": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-github"],
      "env": {
        "GITHUB_PERSONAL_ACCESS_TOKEN": "<YOUR_TOKEN>"
      }
    },
    "postgres": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-postgres", "postgresql://localhost/mydb"]
    }
  }
}

After

{
  "mcpServers": {
    "filesystem": { ... },
    "git": { ... },
    "time": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-time"]
    },
    "memory": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-memory"]
    }
  }
}

The example Claude Desktop configuration included `github` and `postgres`
servers that are both listed as archived in the same README. Replace them
with `time` and `memory` which are active reference implementations.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant