
MCP Context Bank Server
Enables AI agents to fetch, search, and retrieve markdown content from remote Git repositories. Supports both public and private repositories with authentication, allowing AI assistants to access documentation and notes stored in Git.
README
MCP Context Bank Server
A Model Context Protocol (MCP) server that provides AI agents with tools to fetch markdown context files from remote Git repositories. This server enables AI assistants like GitHub Copilot to access and search through documentation, notes, and other markdown content stored in Git repositories.
Features
- Repository Access: Clone and access any public Git repository (supports both HTTPS and SSH URLs)
- Markdown File Discovery: Automatically find and list all markdown files in a repository
- File Content Retrieval: Get the content of specific markdown files
- Content Search: Search for specific terms within markdown files across the repository
- Branch Support: Work with any branch in the repository
- Path Filtering: Filter files by path patterns (e.g., only files in
docs/
directory) - Security: Built-in protection against path traversal attacks
- Cleanup: Automatic cleanup of temporary cloned repositories
Installation
From NPM (Recommended)
npm install -g mcp-context-bank-server
From Source
git clone <this-repository>
cd mcp-context-bank-server
yarn install
yarn build
Usage
Environment Configuration
The server supports configurable repositories and authentication through environment variables:
# Set default repository (optional)
export MCP_DEFAULT_REPOSITORY="https://github.com/your-org/your-context-repo.git"
# Set access token for private repositories (optional)
export MCP_ACCESS_TOKEN="ghp_your_github_personal_access_token"
If no default repository is configured, you must provide repository_url
in each tool call.
VS Code with GitHub Copilot
1. Install the MCP Server
npm install -g mcp-context-bank-server
2. Configure VS Code Settings
Add the MCP server to your VS Code settings. Open VS Code settings (JSON) and add:
{
"github.copilot.advanced": {
"mcp": {
"servers": {
"context-bank": {
"command": "mcp-context-bank-server",
"env": {
"MCP_DEFAULT_REPOSITORY": "https://github.com/your-org/your-docs.git",
"MCP_ACCESS_TOKEN": "ghp_your_token_here"
}
}
}
}
}
}
3. Using with Copilot Chat
Once configured, you can ask GitHub Copilot to use the context from your repository:
@workspace Can you help me understand the API documentation? Please check the context repository for the latest API specs.
Copilot will automatically use the MCP server to fetch relevant markdown files from your configured repository.
VS Code with Amazon Q Developer
1. Install the MCP Server
npm install -g mcp-context-bank-server
2. Configure Amazon Q
Create or update your MCP configuration file (typically ~/.config/amazon-q/mcp-servers.json
):
{
"servers": {
"context-bank": {
"command": "mcp-context-bank-server",
"env": {
"MCP_DEFAULT_REPOSITORY": "https://github.com/your-org/your-context.git",
"MCP_ACCESS_TOKEN": "ghp_your_github_token"
}
}
}
}
3. Using with Amazon Q
Ask Amazon Q to access your context repository:
Can you search our documentation repository for information about deployment procedures?
Claude Desktop Configuration
For Claude Desktop, add to your configuration file:
{
"mcpServers": {
"context-bank": {
"command": "mcp-context-bank-server",
"env": {
"MCP_DEFAULT_REPOSITORY": "git@github.com:your-org/context-bank.git",
"MCP_ACCESS_TOKEN": "your_token_if_needed"
}
}
}
}
Authentication for Private Repositories
GitHub Personal Access Token (PAT)
- Go to GitHub Settings → Developer settings → Personal access tokens
- Generate a new token with
repo
scope for private repositories - Set the token as an environment variable or pass it in tool calls:
Option 1: Environment Variable (Recommended)
export MCP_ACCESS_TOKEN="ghp_your_token_here"
Option 2: Per-request Token
{
"name": "get_markdown_files",
"arguments": {
"repository_url": "https://github.com/your-org/private-repo.git",
"access_token": "ghp_your_token_here"
}
}
SSH Keys
For SSH URLs (git@github.com:...), ensure your SSH keys are properly configured:
# Test SSH access
ssh -T git@github.com
# If needed, add your key to ssh-agent
ssh-add ~/.ssh/id_rsa
Repository Configuration Examples
Public Repository
{
"repository_url": "https://github.com/microsoft/vscode.git",
"branch": "main"
}
Private Repository with HTTPS + PAT
{
"repository_url": "https://github.com/your-org/private-docs.git",
"access_token": "ghp_your_token",
"branch": "main"
}
Private Repository with SSH
{
"repository_url": "git@github.com:your-org/private-docs.git",
"branch": "develop"
}
As an MCP Server
The server communicates via stdio and provides three main tools:
- get_markdown_files - List all markdown files in a repository
- get_file_content - Get content of a specific file
- search_markdown_content - Search for text within markdown files
Development
# Install dependencies
yarn install
# Run in development mode
yarn dev
# Build for production
yarn build
# Start built version
yarn start
Tools Documentation
get_markdown_files
Lists all markdown files in the specified Git repository.
Parameters:
repository_url
(optional): Git repository URL (uses default if not provided)branch
(optional): Git branch to fetch from (default: "main")path_filter
(optional): Path pattern to filter files (e.g., "docs/", "*.md")access_token
(optional): Personal Access Token for private repositories
Example Response:
{
"repository": "https://github.com/your-org/context-repo.git",
"branch": "main",
"files": ["README.md", "docs/api.md", "docs/guide.md"],
"total_files": 3
}
get_file_content
Retrieves the content of a specific markdown file from the repository.
Parameters:
repository_url
(optional): Git repository URL (uses default if not provided)file_path
(required): Path to the file within the repositorybranch
(optional): Git branch to fetch from (default: "main")access_token
(optional): Personal Access Token for private repositories
Example Response:
{
"repository": "https://github.com/your-org/context-repo.git",
"branch": "main",
"file_path": "docs/api.md",
"content": "# API Documentation\n\nThis is the API documentation...",
"size": 1234
}
search_markdown_content
Searches for specific content within markdown files in the repository.
Parameters:
repository_url
(optional): Git repository URL (uses default if not provided)search_term
(required): Text to search forbranch
(optional): Git branch to fetch from (default: "main")case_sensitive
(optional): Whether search should be case sensitive (default: false)access_token
(optional): Personal Access Token for private repositories
Example Response:
{
"repository": "https://github.com/your-org/context-repo.git",
"branch": "main",
"search_term": "API",
"case_sensitive": false,
"results": [
{
"file_path": "docs/api.md",
"matches": [
{
"line_number": 1,
"line_content": "# API Documentation"
}
],
"total_matches": 1
}
],
"total_files_with_matches": 1,
"total_matches": 1
}
Repository Requirements
The server can work with any Git repository that contains markdown files. The repository can be configured in multiple ways:
Default Repository Configuration
Set a default repository using environment variables:
export MCP_DEFAULT_REPOSITORY="https://github.com/your-org/your-context-repo.git"
export MCP_ACCESS_TOKEN="ghp_your_token_if_private"
Repository Access Methods
- Public repositories: Work with both HTTPS and SSH URLs without authentication
- Private repositories with HTTPS: Use Personal Access Token (PAT) authentication
- Private repositories with SSH: Use SSH key authentication
- Per-request repositories: Override default by providing
repository_url
in each tool call
Supported Repository Types
- GitHub (public and private)
- GitLab (public and private)
- Bitbucket (public and private)
- Any Git repository accessible via HTTPS or SSH
Branch Support
- Default branch: Uses "main" by default but can work with any branch
- Branch specification: Override default by providing
branch
parameter - Multiple branches: Each tool call can target a different branch
Authentication Methods
Personal Access Token (PAT)
For private repositories, create a PAT with appropriate permissions:
-
GitHub: Settings → Developer settings → Personal access tokens → Generate new token
- Required scopes:
repo
(for private repos) orpublic_repo
(for public repos)
- Required scopes:
-
GitLab: User Settings → Access Tokens → Add a personal access token
- Required scopes:
read_repository
- Required scopes:
-
Bitbucket: Personal Bitbucket settings → App passwords → Create app password
- Required permissions:
Repositories: Read
- Required permissions:
SSH Key Authentication
For SSH URLs, ensure proper SSH key setup:
# Test SSH access to GitHub
ssh -T git@github.com
# Add SSH key to agent if needed
ssh-add ~/.ssh/id_rsa
Security Considerations
- Path Traversal Protection: The server prevents access to files outside the repository directory
- Temporary Files: All cloned repositories are stored in temporary directories and cleaned up automatically
- Input Validation: All inputs are validated using Zod schemas
- Branch Isolation: Each operation clones only the specific branch with depth 1 for efficiency
Error Handling
The server provides detailed error messages for common issues:
- Invalid repository URLs
- Non-existent files or branches
- Network connectivity issues
- Permission problems
Contributing
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests if applicable
- Submit a pull request
License
MIT License - see LICENSE file for details.
Support
For issues and questions, please use the GitHub issue tracker.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.