Registry / aws / awslabs-git-repo-research-mcp-server

awslabs-git-repo-research-mcp-server

JSON →
library1.0.15pypypiunverified

An AWS Labs Model Context Protocol (MCP) server for researching git repositories. Version 1.0.15, requires Python >=3.10. Released under Apache 2.0, maintained by AWS Labs.

pip install awslabs-git-repo-research-mcp-server
INSTALL
IMPORT
SIG · AWSLABS-GIT-REPO-R
A
awslabs-git-repo-research-mcp-server
awspythonv1.0.15
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

server
from mcp.server import Server
The package itself is installed as a CLI tool; main import is from the 'mcp' package.
FastMCP
from mcp.server.fastmcp import FastMCP
FastMCP is the recommended way to create an MCP server in later versions.

Minimal MCP server using FastMCP. Requires the mcp package (>=1.0.0).

from mcp.server.fastmcp import FastMCP # Create an MCP server mcp = FastMCP("GitRepoResearch") @mcp.tool() def research_repo(url: str) -> str: """Research a git repository and return structured information.""" return f"Researched {url}" if __name__ == "__main__": mcp.run()
Debug
Known issues
gotchaThe package name on PyPI (awslabs-git-repo-research-mcp-server) differs from the import path: you import from 'mcp', not the package name.
fix
Import from mcp.server.fastmcp or mcp.server as documented.
affects: all
breakingFastMCP replaced the lower-level 'Server' class as the recommended entry point in version 1.0.0. Code using 'Server' directly may need updates.
fix
Migrate to FastMCP: from mcp.server.fastmcp import FastMCP; replace Server(...) with FastMCP(...).
affects: >=1.0.0
deprecatedOlder MCP versions used 'mcp' as a CLI. The library now ships a separate CLI entry point; check documentation for exact usage.
fix
Update to latest version and follow the new CLI patterns (e.g., 'mcp run server.py').
affects: <1.0.0
Upgrade
Version history
1.0.15latest on PyPI · released Mar 24, 2026
Audit
Dependencies

No dependency data recorded yet.

Agent activity
29 hits · last 30 days
node
26
OpenAI (training)
2
Resources
awslabs-git-repo-research-mcp-server — pip install awslabs-git-repo-research-mcp-server · libregistry