artsonia-mcp 0.1.0
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/.claude-plugin/marketplace.json +34 -0
- package/.claude-plugin/plugin.json +21 -0
- package/.mcp.json +12 -0
- package/dist/bundle.js +38869 -0
- package/dist/src/auth.js +73 -0
- package/dist/src/client.js +74 -0
- package/dist/src/cookies.js +33 -0
- package/dist/src/index.js +26 -0
- package/dist/src/parse.js +144 -0
- package/dist/src/tools/fans.js +11 -0
- package/dist/src/tools/healthcheck.js +35 -0
- package/dist/src/tools/portfolio.js +27 -0
- package/dist/src/tools/students.js +14 -0
- package/dist/src/tools/writes.js +138 -0
- package/dist/src/transport-fetch.js +30 -0
- package/dist/src/transport-fetchproxy.js +36 -0
- package/dist/src/transport.js +11 -0
- package/dist/src/version.js +3 -0
- package/manifest.json +115 -0
- package/package.json +37 -0
- package/server.json +36 -0
- package/skills/artsonia-mcp/SKILL.md +96 -0
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://anthropic.com/claude-code/marketplace.schema.json",
|
|
3
|
+
"name": "artsonia-mcp",
|
|
4
|
+
"owner": {
|
|
5
|
+
"name": "Chris Hall",
|
|
6
|
+
"email": "chris.c.hall@gmail.com"
|
|
7
|
+
},
|
|
8
|
+
"metadata": {
|
|
9
|
+
"description": "MCP server for Artsonia — natural-language access to student-art portfolios, comments, and fans",
|
|
10
|
+
"version": "0.1.0"
|
|
11
|
+
},
|
|
12
|
+
"plugins": [
|
|
13
|
+
{
|
|
14
|
+
"name": "artsonia-mcp",
|
|
15
|
+
"displayName": "Artsonia",
|
|
16
|
+
"source": "./",
|
|
17
|
+
"description": "MCP server for Artsonia — access student portfolios, post comments, and manage fans via natural language",
|
|
18
|
+
"version": "0.1.0",
|
|
19
|
+
"author": {
|
|
20
|
+
"name": "Chris Hall"
|
|
21
|
+
},
|
|
22
|
+
"homepage": "https://github.com/chrischall/artsonia-mcp",
|
|
23
|
+
"repository": "https://github.com/chrischall/artsonia-mcp",
|
|
24
|
+
"license": "MIT",
|
|
25
|
+
"keywords": [
|
|
26
|
+
"artsonia",
|
|
27
|
+
"student-art",
|
|
28
|
+
"mcp",
|
|
29
|
+
"parent"
|
|
30
|
+
],
|
|
31
|
+
"category": "education"
|
|
32
|
+
}
|
|
33
|
+
]
|
|
34
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "artsonia-mcp",
|
|
3
|
+
"displayName": "Artsonia",
|
|
4
|
+
"version": "0.1.0",
|
|
5
|
+
"description": "MCP server for Artsonia — natural-language access to student-art portfolios, comments, and fans",
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "Chris Hall",
|
|
8
|
+
"email": "chris.c.hall@gmail.com"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://github.com/chrischall/artsonia-mcp",
|
|
11
|
+
"repository": "https://github.com/chrischall/artsonia-mcp",
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"keywords": [
|
|
14
|
+
"artsonia",
|
|
15
|
+
"student-art",
|
|
16
|
+
"mcp",
|
|
17
|
+
"parent"
|
|
18
|
+
],
|
|
19
|
+
"skills": "./skills/artsonia-mcp/SKILL.md",
|
|
20
|
+
"mcp": "./.mcp.json"
|
|
21
|
+
}
|