Skip to main content
Glama

mcp-github-project-manager

config.ts728 B
export class GitHubConfig { constructor( private readonly _owner: string, private readonly _repo: string, private readonly _token: string ) {} get owner(): string { return this._owner; } get repo(): string { return this._repo; } get token(): string { return this._token; } static create(owner: string, repo: string, token: string): GitHubConfig { if (!owner || !repo || !token) { throw new Error('GitHub configuration requires owner, repo, and token'); } return new GitHubConfig(owner, repo, token); } toJSON(): { owner: string; repo: string; token: string } { return { owner: this.owner, repo: this.repo, token: this.token, }; } }

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/kunwarVivek/mcp-github-project-manager'

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