Metadata-Version: 2.4
Name: gridly-server-mcp
Version: 0.0.9
Summary: Add your description here
Requires-Python: >=3.13
Description-Content-Type: text/markdown
Requires-Dist: mcp[cli]>=1.9.0
Requires-Dist: requests>=2.31.0

# Gridly MCP Server

MCP Server for the GitLab API, enabling project management, file operations, and more.

## Tools

1. `list_projects`
   - To list projects of a company

2. `retrieve_project`
   - Get project by id if succeeded. Otherwise, return an error.
   - Inputs:
     - `id` (string): Project ID

3. `list_database`
   - To list databases in a project.
   - Inputs:
     - `projectId` (string): Project ID
   - Returns: Project search results

4. `retrieve_database`
   - Get database by id 
   - Inputs:
     - `id` (string): database id
   - Returns: Created project details

5. `list_glossaries`
   - Get list of a glossary
   
6. `list_translation_memories`
   - list translation memories in a company

7. `retrieve_translation_memory`
    - Return translation memory data by Id
    - Inputs:
        - `id` (string): tm id

8. `retrieve_glossary`
   - retrieve detail of a glossary by Id
   - Inputs:
     - `id` (string): glossary id

9. `fetch_translation_memory`
   - Create a new merge request
   - Inputs:
     - `id` (string): tm ID

10. `suggest_translation_in_memory`
   - Suggest translation in memory

11. `search_glossary_terms`
   - Search glossary terms in paragraph

## Setup

### Api key
[Create a Gridly Api key follow instructions](https://help.gridly.com/360017915857-API-Key-Management) with appropriate permissions:
    1. In your Gridly Dashboard, clicknext to your company name and select Company Settings. 
    2. Select API Keys from the left-hand side menu to get to the API Keys page. 
    3. Click Create API key.

### Usage with Claude Desktop (Recommended):
Follow instructions : https://modelcontextprotocol.io/quickstart/user
Add the following to your `claude_desktop_config.json`:

#### UVX

```json
{
  "mcpServers": {
    "gitlab": {
      "command": "uvx",
      "args": [
        "gridly-server-mcp@0.0.9"
      ],
      "env": {
        "API_KEY": "<YOUR_TOKEN>",
        "ENV": "integration" // Optional, for self-hosted instances
      }
    }
  }
}
```

## Environment Variables

- `API_KEY`: Your Gridly Api Key (required)
- `ENV`: Base enviroment for Gridly API (optional, defaults to `integration`)
