UNPKG

octocode-mcp

Version:

Model Context Protocol (MCP) server for advanced GitHub repository analysis and code discovery. Provides AI assistants with powerful tools to search, analyze, and understand codebases across GitHub.

5 lines (4 loc) 375 B
import type { GitHubAPIResponse, OptimizedCodeSearchResult } from './githubAPI'; import { GitHubCodeSearchQuery } from '../types'; import { AuthInfo } from '@modelcontextprotocol/sdk/server/auth/types'; export declare function searchGitHubCodeAPI(params: GitHubCodeSearchQuery, authInfo?: AuthInfo, sessionId?: string): Promise<GitHubAPIResponse<OptimizedCodeSearchResult>>;