@projora/mcp-server 1.3.1 → 1.3.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.
Files changed (2) hide show
  1. package/README.md +20 -9
  2. package/package.json +2 -4
package/README.md CHANGED
@@ -23,27 +23,38 @@ A Model Context Protocol (MCP) server for [Projora](https://projora.app) task ma
23
23
  ## Installation
24
24
 
25
25
  ```bash
26
- npx @projora/mcp-server
26
+ npm install -g @projora/mcp-server
27
27
  ```
28
28
 
29
- Or install globally:
29
+ Or run directly with npx (no installation needed):
30
30
 
31
31
  ```bash
32
- npm install -g @projora/mcp-server
32
+ npx projora-mcp-server setup
33
33
  ```
34
34
 
35
35
  ## Quick Setup
36
36
 
37
- Run this single command to automatically configure Claude Code or OpenCode:
37
+ ### For Claude Code (Recommended)
38
+
39
+ Run this single command (replace `YOUR_TOKEN` with your API token):
40
+
41
+ ```bash
42
+ claude mcp add projora \
43
+ --env PROJORA_AUTH_TOKEN=YOUR_TOKEN \
44
+ -- npx -y projora-mcp-server
45
+ ```
46
+
47
+ Get your API token from [Projora Settings](https://projora.app/settings/integrations).
48
+
49
+ ### For OpenCode
50
+
51
+ Run the setup wizard:
38
52
 
39
53
  ```bash
40
- npx @projora/mcp-server setup
54
+ npx projora-mcp-server setup
41
55
  ```
42
56
 
43
- The setup wizard will:
44
- 1. Prompt for your API token (get it from [Projora Settings](https://projora.app/settings/integrations))
45
- 2. Automatically configure your AI coding assistant
46
- 3. No manual editing of config files required!
57
+ The wizard will prompt for your API token and automatically configure OpenCode.
47
58
 
48
59
  ### Manual Configuration
49
60
 
package/package.json CHANGED
@@ -1,12 +1,10 @@
1
1
  {
2
2
  "name": "@projora/mcp-server",
3
- "version": "1.3.1",
3
+ "version": "1.3.3",
4
4
  "description": "MCP server for Projora task management - integrate with Claude Code and OpenCode to manage tasks, update statuses, and track work",
5
5
  "type": "module",
6
6
  "bin": {
7
- "mcp-server": "./build/index.js",
8
- "projora-mcp": "./build/index.js",
9
- "projora-mcp-setup": "./build/setup.js"
7
+ "projora-mcp-server": "./build/index.js"
10
8
  },
11
9
  "main": "./build/index.js",
12
10
  "scripts": {