Skip to main content
Glama

Discogs MCP Server

by cswkim
index.ts651 B
import { UserCollectionService } from './collection.js'; import { UserListsService } from './lists.js'; import { UserProfileService } from './profile.js'; import { UserWantsService } from './wants.js'; /** * Main user service that composes all specialized services */ export class UserService { public collection: UserCollectionService; public lists: UserListsService; public profile: UserProfileService; public wants: UserWantsService; constructor() { this.collection = new UserCollectionService(); this.lists = new UserListsService(); this.profile = new UserProfileService(); this.wants = new UserWantsService(); } }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/cswkim/discogs-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server