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.
版本控制 分类下的更多 MCP 服务器
Github Mcp Server
githubGitHub's official MCP Server
MCP Atlassian
soopersetMCP server for Atlassian tools (Confluence, Jira)
Bitbucket MCP
MatanYeminiBitbucket MCP - A Model Context Protocol (MCP) server for integrating with Bitbucket Cloud and Server APIs
Atlassian Jira MCP Server
aashariNode.js/TypeScript MCP server for Atlassian Jira. Equips AI systems (LLMs) with tools to list/get projects, search/get issues (using JQL/ID), and view dev info (commits, PRs). Connects AI capabilities directly into Jira project management and issue tracking workflows.
Code Review Server
crazyrabbitLTCA MCP server for code reviews
评论