MCP.so
Sign In
Servers

Repo Context Mcp

@pablo-peek

Repo Context MCP provides programmatic access to repository contents for integrations and automation. It can list directories/files, read any file, return the README, perform TypeScript type analysis (via ts-morph), and search for OpenAPI/Swagger spec files. Supports local repo p

Overview

What is Repo Context MCP?

It is a programmatic MCP server to explore repositories, either local or from GitHub. It can list files, read file contents, return README, analyze TypeScript types using ts-morph, and locate OpenAPI/Swagger specs. It is intended for developers who want to programmatically interact with repository contents via an MCP interface.

How to use Repo Context MCP?

Set environment variables GITHUB_TOKEN and GITHUB_NAME (do not store tokens in config files). Then invoke the server and use its tools such as setRepoPath, getFiles, getFileContent, getReadme, analyzeFileTypes, analyzeFileTypesAdvanced, getGithubFileContent, and getSwaggerSpec.

Key features of Repo Context MCP

  • Set active repository path via setRepoPath
  • List files and folders with getFiles
  • Read file contents using getFileContent
  • Return root README.md with getReadme
  • Analyze TypeScript types with analyzeFileTypes (simple) and analyzeFileTypesAdvanced (ts-morph)
  • Fetch files from GitHub using getGithubFileContent (requires GITHUB_TOKEN)
  • Search for OpenAPI/Swagger specs with getSwaggerSpec

Use cases of Repo Context MCP

  • Programmatically explore a local codebase through MCP tools
  • Retrieve specific file contents from a GitHub repository without cloning
  • Analyze TypeScript type exports in a project
  • Locate and inspect OpenAPI/Swagger specification files in a repository

FAQ from Repo Context MCP

What environment variables are required?

GITHUB_TOKEN and GITHUB_NAME must be set. The token should never be stored in config files.

What repositories can Repo Context MCP access?

It can access both local file system repositories (via setRepoPath) and GitHub repositories (via getGithubFileContent using the token).

What tools does Repo Context MCP provide?

It provides setRepoPath, getFiles, getFileContent, getReadme, analyzeFileTypes, analyzeFileTypesAdvanced, getGithubFileContent, and getSwaggerSpec.

How does TypeScript analysis work?

analyzeFileTypes performs a simple exported function scan, while analyzeFileTypesAdvanced uses ts-morph resolution which may require project dependencies.

Can it find OpenAPI/Swagger specs?

Yes, getSwaggerSpec searches common locations for OpenAPI/Swagger specification files.

Tags

More from Version Control