@qikdev/mcp 6.7.0 → 6.7.1
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/README.md +26 -41
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -22,53 +22,38 @@ A comprehensive Model Context Protocol (MCP) server for the Qik platform, enabli
|
|
|
22
22
|
- **Scope and Permission Awareness**: Respects content scopes and user permissions
|
|
23
23
|
- **Batch Operations**: Supports efficient bulk operations where available
|
|
24
24
|
|
|
25
|
-
## 📦
|
|
25
|
+
## 📦 Quick Start
|
|
26
|
+
|
|
27
|
+
Just run:
|
|
26
28
|
|
|
27
29
|
```bash
|
|
28
|
-
|
|
30
|
+
npx @qikdev/mcp setup
|
|
29
31
|
```
|
|
30
32
|
|
|
31
|
-
|
|
33
|
+
This interactive setup will:
|
|
34
|
+
1. Prompt you for your Qik API access token
|
|
35
|
+
2. Validate your token against the Qik API
|
|
36
|
+
3. Automatically configure Claude Desktop to use the MCP server
|
|
37
|
+
|
|
38
|
+
That's it! Restart Claude Desktop and you're ready to go.
|
|
39
|
+
|
|
40
|
+
## 🔧 Getting Your Access Token
|
|
41
|
+
|
|
42
|
+
1. Log in to your Qik dashboard at https://app.qik.dev
|
|
43
|
+
2. Navigate to Settings → API Access
|
|
44
|
+
3. Generate a new access token
|
|
45
|
+
4. Copy the token and paste it when prompted during setup
|
|
46
|
+
|
|
47
|
+
## 📋 CLI Commands
|
|
32
48
|
|
|
33
|
-
### Quick Setup
|
|
34
49
|
```bash
|
|
35
|
-
|
|
50
|
+
npx @qikdev/mcp setup # Initial setup (interactive)
|
|
51
|
+
npx @qikdev/mcp status # Check configuration status
|
|
52
|
+
npx @qikdev/mcp update-token # Update your access token
|
|
53
|
+
npx @qikdev/mcp install # Add to Claude Desktop config
|
|
54
|
+
npx @qikdev/mcp remove # Remove from Claude Desktop config
|
|
36
55
|
```
|
|
37
56
|
|
|
38
|
-
This will guide you through:
|
|
39
|
-
1. Entering your Qik API access token
|
|
40
|
-
2. Configuring your API URL (defaults to https://api.qik.dev)
|
|
41
|
-
3. Automatically adding the server to your MCP configuration
|
|
42
|
-
|
|
43
|
-
### Manual Setup
|
|
44
|
-
|
|
45
|
-
1. **Get your Qik API Access Token**:
|
|
46
|
-
- Log in to your Qik dashboard at https://app.qik.dev
|
|
47
|
-
- Navigate to Settings → API Access
|
|
48
|
-
- Generate a new access token
|
|
49
|
-
|
|
50
|
-
2. **Configure Environment Variables**:
|
|
51
|
-
```bash
|
|
52
|
-
export QIK_ACCESS_TOKEN="your_access_token_here"
|
|
53
|
-
export QIK_API_URL="https://api.qik.dev" # Optional, defaults to this
|
|
54
|
-
```
|
|
55
|
-
|
|
56
|
-
3. **Add to MCP Configuration**:
|
|
57
|
-
Add this to your MCP settings file:
|
|
58
|
-
```json
|
|
59
|
-
{
|
|
60
|
-
"mcpServers": {
|
|
61
|
-
"qik": {
|
|
62
|
-
"command": "npx",
|
|
63
|
-
"args": ["@qikdev/mcp", "run"],
|
|
64
|
-
"env": {
|
|
65
|
-
"NODE_ENV": "production"
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
```
|
|
71
|
-
|
|
72
57
|
## 🛠️ Available Tools
|
|
73
58
|
|
|
74
59
|
### Authentication & Session
|
|
@@ -193,10 +178,10 @@ The server automatically caches glossary data for 5 minutes to improve performan
|
|
|
193
178
|
### Authentication Issues
|
|
194
179
|
```bash
|
|
195
180
|
# Check your token status
|
|
196
|
-
|
|
181
|
+
npx @qikdev/mcp status
|
|
197
182
|
|
|
198
183
|
# Reconfigure if needed
|
|
199
|
-
|
|
184
|
+
npx @qikdev/mcp setup
|
|
200
185
|
```
|
|
201
186
|
|
|
202
187
|
### Common Issues
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qikdev/mcp",
|
|
3
|
-
"version": "6.7.
|
|
3
|
+
"version": "6.7.1",
|
|
4
4
|
"description": "A plug-and-play Model Context Protocol server for the Qik platform - enabling AI assistants to interact with Qik's content management system, user management, forms, files, and more.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|