dev-mcp
A local MCP server that gives AI agents access to developer tooling — GitHub (read-only), documentation search, and web research — via stdio transport.
README
dev-mcp
A local MCP (Model Context Protocol) server that gives AI agents access to developer tooling — GitHub (read-only), documentation search, and web research — via stdio transport.
Built with Bun, TypeScript, the MCP SDK, and Zod.
Features
GitHub (read-only)
| Tool | Description |
|---|---|
github.repo_search |
Search repositories by query |
github.repo_read |
Get repository details |
github.file_read |
Read a file from a repository |
github.issues_list |
List issues with state/label filters |
github.issue_get |
Get a single issue |
github.prs_list |
List pull requests |
github.pr_diff |
Get the diff of a pull request |
github.commit_search |
Search commits by message or author |
Context7 Documentation Search
| Tool | Description |
|---|---|
context7.docs_search |
Search library documentation |
context7.docs_get |
Get specific documentation page |
context7.examples_get |
Get code examples |
context7.api_lookup |
Look up API symbol documentation |
Exa Web Research
| Tool | Description |
|---|---|
exa.web_search |
Search the web |
exa.web_fetch |
Fetch and convert a URL to markdown/text |
exa.code_search |
Search code across GitHub |
exa.research_brief |
Generate a research brief by synthesizing top results |
Total: 16 tools
Prerequisites
- Bun 1.3+ (runtime)
- A GitHub Personal Access Token with
repo(read-only) andpublic_reposcopes
Quick Start
# Install dependencies
bun install
# Create your environment file
cp .env.example .env
# Edit .env and set GITHUB_TOKEN
# Run typecheck
bun run typecheck
# Start the server
bun start
The server listens on stdio, ready to receive MCP JSON-RPC messages.
Configuration
All configuration is via environment variables:
| Variable | Required | Default | Description |
|---|---|---|---|
GITHUB_TOKEN |
Yes | — | GitHub PAT (read-only access) |
CONTEXT7_API_KEY |
No | — | Context7 API key |
EXA_API_KEY |
No | — | Exa API key |
SENTRY_DSN |
No | — | Sentry DSN for error reporting |
SENTRY_ENVIRONMENT |
No | development |
Sentry environment tag |
LOG_LEVEL |
No | info |
Log level (debug, info, warn, error) |
NODE_ENV |
No | development |
Runtime environment |
Architecture
src/
├── config/ # Environment validation (Zod schema)
├── core/ # MCP server, tool registry, transport
├── observability/ # Logger, Sentry integration
├── schemas/ # Zod schemas for all tool inputs
├── security/ # Input validation wrapper
├── tools/
│ ├── context7/ # Documentation search tools
│ ├── exa/ # Web search & research tools
│ └── github/ # GitHub API tools
└── utils/ # Error hierarchy (McpError)
Development
bun run typecheck # Type-check all files
bun start # Start the server (stdio)
The project uses Husky for pre-commit hooks and Turbo for task orchestration. A typecheck hook runs automatically before each commit.
License
MIT — see LICENSE.
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.