auth_set_token
Set an authentication token for a specified provider (e.g., Gitea, GitHub) to enable secure access and interaction with project resources via the GitMCP server.
Instructions
Set authentication token for a provider
Input Schema
Name | Required | Description | Default |
---|---|---|---|
provider | Yes | Provider name (gitea, github) | |
token | Yes | Authentication token |
Input Schema (JSON Schema)
{
"properties": {
"provider": {
"description": "Provider name (gitea, github)",
"type": "string"
},
"token": {
"description": "Authentication token",
"type": "string"
}
},
"required": [
"provider",
"token"
],
"type": "object"
}