Sourcebot
If you are the rightful owner of Sourcebot and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcpreview.com.
The Sourcebot MCP server allows LLM agents to fetch code context from various repositories hosted on platforms like GitHub, GitLab, and Bitbucket, enhancing the capabilities of LLMs in code-related tasks.
Sourcebot MCP is a model context protocol server that enables LLM agents to access and fetch code context from a wide range of repositories hosted on platforms such as GitHub, GitLab, and Bitbucket. This server is designed to enhance the capabilities of LLMs by providing them with relevant code context, which can be used to enrich responses, improve reasoning abilities, and build custom LLM agents for tasks like compliance auditing and migration. The server supports regex-based code searches and plans to incorporate semantic search and code navigation features in the future.
Features
- Fetch code context from multiple repositories across platforms like GitHub, GitLab, and Bitbucket.
- Enhance LLM capabilities by providing relevant code context for enriched responses and improved reasoning.
- Support for regex-based code searches with plans for future semantic search capabilities.
- Ability to list all repositories indexed by Sourcebot and fetch source code for specific files.
- Potential for building custom LLM agents for tasks like compliance auditing and migration.
MCP Tools
- {'search_code': 'Fetches code that matches the provided regex pattern in query.'}
- {'list_repos': 'Lists all repositories indexed by Sourcebot.'}
- {'get_file_source': 'Fetches the source code for a given file.'}
Usage with Different Platforms
Cursor
{
"mcpServers": {
"sourcebot": {
"command": "npx",
"args": ["-y", "@sourcebot/mcp@latest" ],
"env": {
"SOURCEBOT_HOST": "http://localhost:3000"
}
}
}
}
Windsurf
{
"mcpServers": {
"sourcebot": {
"command": "npx",
"args": ["-y", "@sourcebot/mcp@latest" ],
"env": {
"SOURCEBOT_HOST": "http://localhost:3000"
}
}
}
}
VS Code
{
"mcp": {
"servers": {
"sourcebot": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@sourcebot/mcp@latest"],
"env": {
"SOURCEBOT_HOST": "http://localhost:3000"
}
}
}
}
}
Claude Code
sh
# SOURCEBOT_HOST env var is optional - if not specified,
# https://demo.sourcebot.dev is used.
claude mcp add sourcebot -e SOURCEBOT_HOST=http://localhost:3000 -- npx -y @sourcebot/mcp@latest
Claude Desktop
{
"mcpServers": {
"sourcebot": {
"command": "npx",
"args": ["-y", "@sourcebot/mcp@latest"],
"env": {
"SOURCEBOT_HOST": "http://localhost:3000"
}
}
}
}
Related MCP Servers
View all developer_tools servers →context7
by upstash
Context7 MCP provides up-to-date, version-specific documentation and code examples directly into your prompt, enhancing the capabilities of LLMs by ensuring they use the latest information.
git-mcp
by idosal
GitMCP is a free, open-source, remote Model Context Protocol (MCP) server that transforms GitHub projects into documentation hubs, enabling AI tools to access up-to-date documentation and code.
Sequential Thinking
by modelcontextprotocol
An MCP server implementation that provides a tool for dynamic and reflective problem-solving through a structured thinking process.
github-mcp-server
by github
The GitHub MCP Server is a Model Context Protocol server that integrates with GitHub APIs for automation and interaction.
deepwiki-mcp
by regenrek
This is an unofficial Deepwiki MCP Server that processes Deepwiki URLs, crawls pages, converts them to Markdown, and returns documents or lists by page.
terraform-mcp-server
by hashicorp
The Terraform MCP Server is a Model Context Protocol server that integrates with Terraform Registry APIs for advanced automation in Infrastructure as Code development.
Everything MCP Server
by modelcontextprotocol
The Everything MCP Server is a comprehensive test server designed to demonstrate the full capabilities of the Model Context Protocol (MCP). It is not intended for production use but serves as a valuable tool for developers building MCP clients.