Loading...
{
"mcpServers": {
"discogs": {
"command": "npx",
"args": [
"-y",
"discogs-mcp-server"
],
"env": {
"DISCOGS_PERSONAL_ACCESS_TOKEN": "<YOUR_TOKEN>"
}
}
}
}searchSearches the Discogs database for releases, artists, labels, etc.
Read-only operation, no data modification.
getReleaseRetrieves detailed information about a specific release.
Read-only operation, no data modification.
getArtistRetrieves detailed information about a specific artist.
Read-only operation, no data modification.
addToCollectionAdds a release to the user's Discogs collection.
Adds data to the user's collection, but does not modify existing data.
removeFromCollectionRemoves a release from the user's Discogs collection.
Deletes data from the user's collection.
updateCollectionItemUpdates information about a specific item in the user's collection.
Modifies existing data in the user's collection.
This MCP server offers powerful tools for interacting with the Discogs API, but it also carries the risk of unintended data modification. It is safe to use for read-only operations and exploration, but users should exercise caution and verify actions before executing any write operations. The use of a personal access token adds a layer of security, but the token itself must be protected.