Skip to main content
Glama
projects.ts829 B
/** * @fileoverview Project-related models * This module defines interfaces for DeepSource projects. */ import { ProjectKey } from '../types/branded.js'; /** * Represents a DeepSource project in the API * @public */ export interface DeepSourceProject { /** Unique identifier for the project */ key: ProjectKey; /** Display name of the project */ name: string; /** Repository information */ repository: { /** Repository URL */ url: string; /** Version control provider (e.g., 'GITHUB', 'GITLAB') */ provider: string; /** Account login that owns the repository */ login: string; /** Repository name */ name: string; /** Whether the repository is private */ isPrivate: boolean; /** Whether the repository is activated in DeepSource */ isActivated: boolean; }; }

Latest Blog Posts

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/sapientpants/deepsource-mcp-server'

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