C
Codeberg
Query Codeberg repositories and issues.
·No reviews yet
Share:
About
Auto-generated
Codeberg is a Model Context Protocol server in the Developer Tools category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about Codeberg.
- What is the Codeberg MCP used for?
- The Codeberg MCP allows you to query Codeberg repositories and issues. It integrates Codeberg functionality into your preferred MCP client, enabling direct interaction with your projects and their associated concerns.
- How do I configure the Codeberg MCP with my client?
- The Codeberg MCP uses the stdio transport, meaning it communicates via standard input/output. Configuration in clients like Claude Desktop or Cursor would typically involve specifying the executable path for the MCP server. Refer to your client's documentation for specific setup steps tailored to stdio transports.
- Does the Codeberg MCP require authentication?
- Yes, the Codeberg MCP requires an API key for authentication. You will need to generate an API key from your Codeberg account settings and provide it during the MCP's configuration or when prompted by your MCP client to access private data or perform actions.
- What capabilities does the Codeberg MCP expose?
- This MCP exposes tools for querying Codeberg repositories and issues. This includes retrieving information about projects, listing issues, and potentially searching through code or issue content, depending on the specific tools implemented.
- Is the Codeberg MCP open source or commercially licensed?
- The Codeberg MCP is provided by the Community and its repository is hosted on GitHub at https://github.com/coderberg/codeberg-mcp. This suggests it is open source and community-driven, likely under a permissive license similar to other community projects.
- What is a prerequisite for using the Codeberg MCP?
- A key prerequisite for using the Codeberg MCP is having a Codeberg account and generating an API key. You must ensure this API key has the necessary permissions to access the repositories and issues you intend to query, otherwise access will be denied.
Install Codeberg
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"codeberg": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-codeberg"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"codeberg": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-codeberg"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"codeberg": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-codeberg"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.