@locusai/mcp 0.1.1 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/README.md +67 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @locusai/mcp
|
|
2
2
|
|
|
3
|
+
## 0.1.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- - Fixed the cli throwing error after init
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @locusai/shared@0.1.3
|
|
10
|
+
|
|
11
|
+
## 0.1.2
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Fix the documents cannot be created in a nested way inside categories
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @locusai/shared@0.1.2
|
|
18
|
+
|
|
3
19
|
## 0.1.1
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/README.md
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="https://raw.githubusercontent.com/asgarovf/locusai/refs/heads/master/assets/logo.png" alt="Locus" width="150" />
|
|
3
|
+
</p>
|
|
4
|
+
|
|
5
|
+
<p align="center">
|
|
6
|
+
<a href="https://www.npmjs.com/package/@locusai/mcp"><img src="https://img.shields.io/npm/v/@locusai/mcp?color=blue" alt="npm version" /></a>
|
|
7
|
+
<a href="https://github.com/asgarovf/locusai/blob/master/LICENSE"><img src="https://img.shields.io/github/license/asgarovf/locusai?color=blue" alt="License" /></a>
|
|
8
|
+
<a href="https://github.com/asgarovf/locusai"><img src="https://img.shields.io/github/stars/asgarovf/locusai?style=flat&color=blue" alt="GitHub Stars" /></a>
|
|
9
|
+
</p>
|
|
10
|
+
|
|
11
|
+
# @locusai/mcp
|
|
12
|
+
|
|
13
|
+
The MCP (Model Context Protocol) server for **Locus** — enabling AI agents to interact with your project.
|
|
14
|
+
|
|
15
|
+
## Features
|
|
16
|
+
|
|
17
|
+
- **Task Management** — Create, update, and move tasks via MCP tools
|
|
18
|
+
- **Documentation** — Read and write project documentation
|
|
19
|
+
- **CI Integration** — Execute CI presets and retrieve results
|
|
20
|
+
- **Artifacts** — Access implementation drafts and build artifacts
|
|
21
|
+
|
|
22
|
+
## MCP Tools
|
|
23
|
+
|
|
24
|
+
| Tool | Description |
|
|
25
|
+
|------|-------------|
|
|
26
|
+
| `kanban.list` | List all tasks |
|
|
27
|
+
| `kanban.create` | Create a new task |
|
|
28
|
+
| `kanban.move` | Move task to a different status |
|
|
29
|
+
| `docs.tree` | Get documentation structure |
|
|
30
|
+
| `docs.read` | Read a document |
|
|
31
|
+
| `docs.write` | Write/update a document |
|
|
32
|
+
| `ci.run` | Execute a CI preset |
|
|
33
|
+
| `artifacts.list` | List task artifacts |
|
|
34
|
+
|
|
35
|
+
## Usage
|
|
36
|
+
|
|
37
|
+
This package is bundled with `@locusai/cli`. You typically don't need to install it directly.
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
# Start via CLI (recommended)
|
|
41
|
+
npx @locusai/cli dev
|
|
42
|
+
|
|
43
|
+
# MCP server runs alongside the dashboard
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
## Configuration
|
|
47
|
+
|
|
48
|
+
Add to your MCP client (Claude, Cursor, etc.):
|
|
49
|
+
|
|
50
|
+
```json
|
|
51
|
+
{
|
|
52
|
+
"mcpServers": {
|
|
53
|
+
"locus": {
|
|
54
|
+
"command": "npx",
|
|
55
|
+
"args": ["@locusai/cli", "mcp", "--project", "/path/to/your/project"]
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
## Part of Locus
|
|
62
|
+
|
|
63
|
+
This package is part of the [Locus](https://github.com/asgarovf/locusai) platform.
|
|
64
|
+
|
|
65
|
+
## License
|
|
66
|
+
|
|
67
|
+
[MIT](https://github.com/asgarovf/locusai/blob/master/LICENSE)
|