docs: replace archived servers in example config with active ones#4495
Open
alvabillwu wants to merge 1 commit into
Open
docs: replace archived servers in example config with active ones#4495alvabillwu wants to merge 1 commit into
alvabillwu wants to merge 1 commit into
Conversation
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The "Additional examples" Claude Desktop configuration in the README includes
githubandpostgresserver entries, but both of these servers are listed as archived in the same README's Archived section.This replaces them with
timeandmemory, 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"] } } }