skillsmp-mcp-lite 1.0.0 → 1.0.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 +61 -61
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,114 +1,114 @@
|
|
|
1
|
-
# SkillsMP MCP Server
|
|
1
|
+
# SkillsMP MCP Server (Lite)
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
A lightweight MCP server that enables AI assistants to search for skills from [SkillsMP](https://skillsmp.com) marketplace before starting any task.
|
|
4
4
|
|
|
5
5
|
## Features
|
|
6
6
|
|
|
7
7
|
- **Keyword Search**: Search skills using specific keywords like "PDF", "web scraper", "SEO"
|
|
8
8
|
- **AI Semantic Search**: Find skills using natural language descriptions powered by Cloudflare AI
|
|
9
9
|
|
|
10
|
-
##
|
|
10
|
+
## Quick Setup
|
|
11
11
|
|
|
12
|
-
|
|
13
|
-
npm install
|
|
14
|
-
npm run build
|
|
15
|
-
```
|
|
16
|
-
|
|
17
|
-
## Configuration
|
|
18
|
-
|
|
19
|
-
### Environment Variables
|
|
20
|
-
|
|
21
|
-
| Variable | Required | Description |
|
|
22
|
-
| ------------------ | -------- | --------------------- |
|
|
23
|
-
| `SKILLSMP_API_KEY` | Yes | Your SkillsMP API key |
|
|
12
|
+
No installation required! Just add the config to your AI client.
|
|
24
13
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
### VS Code / Cursor Setup
|
|
14
|
+
### VS Code / GitHub Copilot
|
|
28
15
|
|
|
29
|
-
Add to your `
|
|
16
|
+
Add to your VS Code `mcp.json` (open with: `Ctrl+Shift+P` → "MCP: Open User Configuration"):
|
|
30
17
|
|
|
31
18
|
```json
|
|
32
19
|
{
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
}
|
|
20
|
+
"servers": {
|
|
21
|
+
"skillsmp": {
|
|
22
|
+
"type": "stdio",
|
|
23
|
+
"command": "npx",
|
|
24
|
+
"args": ["-y", "skillsmp-mcp-lite"],
|
|
25
|
+
"env": {
|
|
26
|
+
"SKILLSMP_API_KEY": "YOUR_API_KEY"
|
|
41
27
|
}
|
|
42
28
|
}
|
|
43
29
|
}
|
|
44
30
|
}
|
|
45
31
|
```
|
|
46
32
|
|
|
47
|
-
###
|
|
33
|
+
### Cursor
|
|
48
34
|
|
|
49
|
-
Add to
|
|
35
|
+
Add to `~/.cursor/mcp.json`:
|
|
50
36
|
|
|
51
37
|
```json
|
|
52
38
|
{
|
|
53
39
|
"mcpServers": {
|
|
54
40
|
"skillsmp": {
|
|
55
|
-
"command": "
|
|
56
|
-
"args": ["
|
|
41
|
+
"command": "npx",
|
|
42
|
+
"args": ["-y", "skillsmp-mcp-lite"],
|
|
57
43
|
"env": {
|
|
58
|
-
"SKILLSMP_API_KEY": "
|
|
44
|
+
"SKILLSMP_API_KEY": "YOUR_API_KEY"
|
|
59
45
|
}
|
|
60
46
|
}
|
|
61
47
|
}
|
|
62
48
|
}
|
|
63
49
|
```
|
|
64
50
|
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
### `skillsmp_search_skills`
|
|
51
|
+
### Claude Desktop
|
|
68
52
|
|
|
69
|
-
|
|
53
|
+
Add to your `claude_desktop_config.json`:
|
|
70
54
|
|
|
71
|
-
|
|
55
|
+
- macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
|
|
56
|
+
- Windows: `%APPDATA%\Claude\claude_desktop_config.json`
|
|
72
57
|
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
58
|
+
```json
|
|
59
|
+
{
|
|
60
|
+
"mcpServers": {
|
|
61
|
+
"skillsmp": {
|
|
62
|
+
"command": "npx",
|
|
63
|
+
"args": ["-y", "skillsmp-mcp-lite"],
|
|
64
|
+
"env": {
|
|
65
|
+
"SKILLSMP_API_KEY": "YOUR_API_KEY"
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
```
|
|
77
71
|
|
|
78
|
-
|
|
72
|
+
### Claude Code
|
|
79
73
|
|
|
80
|
-
```
|
|
81
|
-
|
|
74
|
+
```bash
|
|
75
|
+
claude mcp add skillsmp -- npx -y skillsmp-mcp-lite --env SKILLSMP_API_KEY=YOUR_API_KEY
|
|
82
76
|
```
|
|
83
77
|
|
|
84
|
-
|
|
78
|
+
## Get Your API Key
|
|
85
79
|
|
|
86
|
-
|
|
80
|
+
Get your API key from: https://skillsmp.com/docs/api
|
|
87
81
|
|
|
88
|
-
**
|
|
82
|
+
> **Note**: The API key is optional. Without it, you may encounter rate limits.
|
|
89
83
|
|
|
90
|
-
|
|
84
|
+
## Available Tools
|
|
91
85
|
|
|
92
|
-
|
|
86
|
+
### `skillsmp_search_skills`
|
|
93
87
|
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
88
|
+
Search for skills using keywords.
|
|
89
|
+
|
|
90
|
+
| Parameter | Type | Required | Description |
|
|
91
|
+
|-----------|------|----------|-------------|
|
|
92
|
+
| `query` | string | Yes | Search keywords |
|
|
93
|
+
| `page` | number | No | Page number (default: 1) |
|
|
94
|
+
| `limit` | number | No | Items per page (default: 20, max: 100) |
|
|
95
|
+
| `sortBy` | string | No | Sort by "stars" or "recent" |
|
|
97
96
|
|
|
98
|
-
|
|
97
|
+
### `skillsmp_ai_search_skills`
|
|
99
98
|
|
|
100
|
-
|
|
99
|
+
AI semantic search for skills using natural language.
|
|
101
100
|
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
101
|
+
| Parameter | Type | Required | Description |
|
|
102
|
+
|-----------|------|----------|-------------|
|
|
103
|
+
| `query` | string | Yes | Natural language description |
|
|
105
104
|
|
|
106
|
-
##
|
|
105
|
+
## Usage Examples
|
|
107
106
|
|
|
108
|
-
|
|
107
|
+
Ask your AI assistant:
|
|
109
108
|
|
|
110
|
-
-
|
|
111
|
-
-
|
|
109
|
+
- "Search for PDF manipulation skills"
|
|
110
|
+
- "Find skills for building a web scraper"
|
|
111
|
+
- "What skills can help me with SEO optimization?"
|
|
112
112
|
|
|
113
113
|
## License
|
|
114
114
|
|