Skip to content

Commit abd4372

Browse files
release: v0.1.3 (#18)
* [MCP-1] feat: build check workflow (#15) * fix: added build check workflow * chore: typo fixes * [MCP-2] chore: add scarf to track installations (#16) * [MCP-2] chore: add scarf to track installations * chore: bump version to 0.1.3 --------- Co-authored-by: sriram veeraghanta <[email protected]>
1 parent 87d4fa4 commit abd4372

File tree

3 files changed

+36
-3
lines changed

3 files changed

+36
-3
lines changed

.github/workflows/build_check.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Build Check
2+
3+
on:
4+
pull_request:
5+
types: [opened, synchronize]
6+
branches:
7+
- canary
8+
- main
9+
10+
jobs:
11+
build:
12+
name: Build Check
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout code
16+
uses: actions/checkout@v4
17+
with:
18+
fetch-depth: 0
19+
20+
- name: Install dependencies
21+
run: npm ci
22+
23+
- name: Build package
24+
run: npm run build

package-lock.json

Lines changed: 10 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@makeplane/plane-mcp-server",
3-
"version": "0.1.2",
3+
"version": "0.1.3",
44
"description": "The Plane MCP Server is a Model Context Protocol (MCP) server that provides seamless integration with Plane APIs, enabling projects, work items, and automations capabilities for develops and AI interfaces.",
55
"bin": {
66
"plane-mcp-server": "./build/index.js"
@@ -32,6 +32,7 @@
3232
"homepage": "https://github.com/makeplane/plane-mcp-server#readme",
3333
"dependencies": {
3434
"@modelcontextprotocol/sdk": "^1.9.0",
35+
"@scarf/scarf": "^1.4.0",
3536
"axios": "^1.8.4",
3637
"zod-to-json-schema": "^3.24.5"
3738
},

0 commit comments

Comments
 (0)