Repo Context Mcp
@pablo-peek
Repo Context Mcp について
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
基本情報
設定
以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。
{
"mcpServers": {
"repo-context": {
"type": "stdio",
"command": "npx",
"args": [
"@pablopeek/repo-context-mcp"
],
"env": {
"ENVIRONMENT": "local",
"GITHUB_TOKEN": "<SET_GITHUB_TOKEN>",
"GITHUB_NAME": "<SET_GITHUB_NAME>"
}
}
}
}ツール
8Change the active repository path
List files and folders at the given path in the active repo
Read the content of a file in the active repo
Read the README.md file from the active repo
Analyze a file and return exported functions and the type of their parameters (if available)
Analyze a file using ts-morph and return exported functions and the type of their parameters (resolving local and imported types)
Read the content of a file from a (private) GitHub repository using the GitHub API.
Read the Swagger/OpenAPI specification file (swagger.json, openapi.json, openapi.yaml, etc.) from the active repo.
概要
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.
「バージョン管理」の他のコンテンツ
Linear MCP Server
jerhadfA server that integrates Linear's project management system with the Model Context Protocol (MCP) to allow LLMs to interact with Linear.
mcp-github-trending MCP Server
hetaoBackendMCP server for getting github trending repos & developers

Git
modelcontextprotocolModel Context Protocol Servers
Linear MCP Server
clinea private MCP server for accessing Linear
Github Mcp Server
githubGitHub's official MCP Server
コメント