@homespunapps/mcp 1.0.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/LICENSE +21 -0
- package/README.md +167 -0
- package/dist/capabilities.d.ts +9 -0
- package/dist/capabilities.js +50 -0
- package/dist/config.d.ts +65 -0
- package/dist/config.js +229 -0
- package/dist/guide.d.ts +12 -0
- package/dist/guide.js +49 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +77 -0
- package/dist/server.d.ts +18 -0
- package/dist/server.js +98 -0
- package/dist/skill.d.ts +24 -0
- package/dist/skill.js +82 -0
- package/dist/tools.d.ts +51 -0
- package/dist/tools.js +1029 -0
- package/dist/version.d.ts +1 -0
- package/dist/version.js +3 -0
- package/package.json +62 -0
- package/server.json +48 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const VERSION = "0.0.29";
|
package/dist/version.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@homespunapps/mcp",
|
|
3
|
+
"mcpName": "io.github.aerolalit/homespun",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"description": "Model Context Protocol (stdio) server for Homespun: lets any MCP client (Claude Desktop, Cursor, …) hand a human a rich interactive UI by URL and get structured data back.",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"keywords": [
|
|
9
|
+
"homespun",
|
|
10
|
+
"mcp",
|
|
11
|
+
"model-context-protocol",
|
|
12
|
+
"agent",
|
|
13
|
+
"relay",
|
|
14
|
+
"human-in-the-loop"
|
|
15
|
+
],
|
|
16
|
+
"homepage": "https://github.com/aerolalit/homespun#readme",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/aerolalit/homespun.git",
|
|
20
|
+
"directory": "packages/mcp"
|
|
21
|
+
},
|
|
22
|
+
"bugs": {
|
|
23
|
+
"url": "https://github.com/aerolalit/homespun/issues"
|
|
24
|
+
},
|
|
25
|
+
"engines": {
|
|
26
|
+
"node": ">=20"
|
|
27
|
+
},
|
|
28
|
+
"publishConfig": {
|
|
29
|
+
"access": "public"
|
|
30
|
+
},
|
|
31
|
+
"bin": {
|
|
32
|
+
"homespun-mcp": "dist/index.js"
|
|
33
|
+
},
|
|
34
|
+
"exports": {
|
|
35
|
+
"./tools": "./dist/tools.js",
|
|
36
|
+
"./guide": "./dist/guide.js",
|
|
37
|
+
"./capabilities": "./dist/capabilities.js",
|
|
38
|
+
"./server": "./dist/server.js"
|
|
39
|
+
},
|
|
40
|
+
"files": [
|
|
41
|
+
"dist",
|
|
42
|
+
"server.json",
|
|
43
|
+
"LICENSE",
|
|
44
|
+
"README.md"
|
|
45
|
+
],
|
|
46
|
+
"scripts": {
|
|
47
|
+
"build": "tsc",
|
|
48
|
+
"typecheck": "tsc --noEmit",
|
|
49
|
+
"test": "vitest run",
|
|
50
|
+
"test:unit": "vitest run"
|
|
51
|
+
},
|
|
52
|
+
"dependencies": {
|
|
53
|
+
"@modelcontextprotocol/sdk": "^1.20.0",
|
|
54
|
+
"@homespunapps/core": "^1.0.0",
|
|
55
|
+
"zod": "^4.4.3"
|
|
56
|
+
},
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@types/node": "^25.9.2",
|
|
59
|
+
"typescript": "^6.0.3",
|
|
60
|
+
"vitest": "^4.1.8"
|
|
61
|
+
}
|
|
62
|
+
}
|
package/server.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "io.github.aerolalit/homespun",
|
|
4
|
+
"title": "Homespun",
|
|
5
|
+
"description": "Hand a human a rich interactive UI by URL and get structured data back, from any MCP client.",
|
|
6
|
+
"version": "0.0.29",
|
|
7
|
+
"repository": {
|
|
8
|
+
"url": "https://github.com/aerolalit/homespun",
|
|
9
|
+
"source": "github"
|
|
10
|
+
},
|
|
11
|
+
"packages": [
|
|
12
|
+
{
|
|
13
|
+
"registryType": "npm",
|
|
14
|
+
"registryBaseUrl": "https://registry.npmjs.org",
|
|
15
|
+
"identifier": "@homespunapps/mcp",
|
|
16
|
+
"version": "0.0.29",
|
|
17
|
+
"transport": {
|
|
18
|
+
"type": "stdio"
|
|
19
|
+
},
|
|
20
|
+
"environmentVariables": [
|
|
21
|
+
{
|
|
22
|
+
"name": "HOMESPUN_API_KEY",
|
|
23
|
+
"description": "Homespun agent API key. If unset, the server auto-registers a fresh agent against the relay on first use and saves the key to the shared CLI store (~/.config/homespun/config.json).",
|
|
24
|
+
"isRequired": false,
|
|
25
|
+
"isSecret": true
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"name": "HOMESPUN_URL",
|
|
29
|
+
"description": "Homespun relay base URL. Defaults to the hosted relay https://homespun.dev; set this to point at a self-hosted relay.",
|
|
30
|
+
"isRequired": false,
|
|
31
|
+
"isSecret": false
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "HOMESPUN_AGENT_NAME",
|
|
35
|
+
"description": "Display name for the auto-registered agent on the relay.",
|
|
36
|
+
"isRequired": false,
|
|
37
|
+
"isSecret": false
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"name": "HOMESPUN_REGISTER_SECRET",
|
|
41
|
+
"description": "Registration secret, required only for relays running REGISTRATION_MODE=secret.",
|
|
42
|
+
"isRequired": false,
|
|
43
|
+
"isSecret": true
|
|
44
|
+
}
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
]
|
|
48
|
+
}
|