# Monolynx

> 100 MCP tools, semantic wiki search, and Claude Code skills — Monolynx isn't just another dashboard. It's a knowledge base your AI agent works with as if it were a team member.

## Everything you need

Nine integrated modules that cover the full project lifecycle.

- [500s](https://monolynx.com/features/500ki.md?lang=en): Error tracking with smart fingerprinting. Catch exceptions from your apps with a lightweight SDK.
- [Scrum](https://monolynx.com/features/scrum.md?lang=en): Backlog, Kanban board, sprints, and story points. Everything for agile project management.
- [Monitoring](https://monolynx.com/features/monitoring.md?lang=en): URL health checks with uptime tracking, response time history, and instant alerts.
- [Heartbeat](https://monolynx.com/features/heartbeat.md?lang=en): Cron job monitoring with dead man's switch. Get alerted when your scheduled tasks stop running.
- [Wiki](https://monolynx.com/features/wiki.md?lang=en): Markdown documentation with page hierarchy, image uploads, and AI-powered semantic search.
- [Connections](https://monolynx.com/features/connections.md?lang=en): Interactive dependency graph powered by Neo4j. Visualize how your code modules relate to each other.
- [Reports](https://monolynx.com/features/reports.md?lang=en): Cross-project work reports with multi-select filters, date ranges, and PDF export for stakeholders.
- [Settlements](https://monolynx.com/features/settlements.md?lang=en): Cross-project billing with status workflow (draft → sent → paid), ticket freezing, and attachment management.
- [Work Plan / Gantt](https://monolynx.com/features/work_plan.md?lang=en): Personal cross-project scheduling on a Gantt chart and monthly calendar, independent of sprint assignment.

## Connect to Claude

Add Monolynx to Claude.ai as a custom connector over HTTPS, or wire it into any client that speaks the Model Context Protocol. Manage tickets, search your wiki, and query your dependency graph in natural language.

### Custom Connector

Add Monolynx directly in Claude.ai (web or desktop) as a custom connector over HTTPS:

1. In Claude.ai open Settings, Connectors.
2. Click Add custom connector and paste the connector URL.
3. Authorize the connection with your Monolynx token.

Connector URL: `https://your-instance/mcp` (replace `your-instance` with your instance host).

### MCP

For Claude Code or any MCP client, add an entry to `.mcp.json`:

```json
{
  "mcpServers": {
    "monolynx": {
      "type": "http",
      "url": "https://your-instance/mcp",
      "headers": { "Authorization": "Bearer YOUR_TOKEN" }
    }
  }
}
```

The MCP server exposes 100 tools across all modules (Bearer token authentication).

### Claude Code plugin

Install Monolynx as a native Claude Code plugin (skills, agents, and the remote MCP server):

```bash
/plugin marketplace add https://gitlab.com/piotrkrych/monolynx.git
/plugin install monolynx@monolynx
```

In the plugin config set your token (`mcp_token`, `osk_...` format), optionally `mcp_endpoint` (defaults to `https://monolynx.com/mcp`) and `project_slug`. After install the commands are: `/monolynx:work`, `/monolynx:ticket-create`, `/monolynx:ticket-review`, `/monolynx:search`, `/monolynx:help`, `/monolynx:create-graph-ci-script`.
