-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
44 lines (44 loc) · 1.07 KB
/
manifest.json
File metadata and controls
44 lines (44 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"dxt_version": "0.1",
"name": "lastfm-dxt",
"display_name": "Last.fm (Unofficial)",
"version": "0.1.0",
"description": "Access your Last.fm music data and listening history through MCP",
"icon": "icon.png",
"author": {
"name": "Jerry Hong",
"url": "https://jerryhong.io"
},
"user_config": {
"lastfm_api_key": {
"type": "string",
"title": "Last.fm API Key",
"description": "Your Last.fm API key (get one at https://www.last.fm/api)",
"required": true
},
"default_username": {
"type": "string",
"title": "Default Username (Optional)",
"description": "Your Last.fm username to use by default",
"required": false
}
},
"server": {
"type": "node",
"entry_point": "dist/index.js",
"mcp_config": {
"command": "node",
"args": [
"${__dirname}/dist/index.js"
],
"env": {
"LASTFM_API_KEY": "${user_config.lastfm_api_key}",
"DEFAULT_USERNAME": "${user_config.default_username}"
}
}
},
"keywords": [
"music"
],
"license": "ISC"
}