@elicitkit/server 0.1.0 → 0.1.2

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.
Files changed (3) hide show
  1. package/README.md +23 -0
  2. package/dist/bin.js +0 -0
  3. package/package.json +9 -9
package/README.md ADDED
@@ -0,0 +1,23 @@
1
+ # @elicitkit/server
2
+
3
+ > Elicitkit MCP reference implementation — serves the question catalog over MCP with progressive 4-tier rendering on @mcp-ui/server.
4
+
5
+ Part of **[Elicitkit](https://github.com/elicitkit/elicitkit)** — typed questions for AI agents. An open standard over MCP: a portable spec (Ask · AskSet · Answer), a TypeScript reference implementation, and an 84-fixture conformance suite.
6
+
7
+ ## Install
8
+
9
+ ```sh
10
+ npm i @elicitkit/server
11
+ ```
12
+
13
+ ## Usage
14
+
15
+ ```sh
16
+ npx @elicitkit/server --help
17
+ ```
18
+
19
+ ## Links
20
+
21
+ - Repository & docs: https://github.com/elicitkit/elicitkit
22
+ - Spec: https://github.com/elicitkit/elicitkit/blob/main/packages/spec/SPEC.md
23
+ - License: Apache-2.0
package/dist/bin.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elicitkit/server",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Elicitkit MCP reference implementation — serves the question catalog over MCP with progressive 4-tier rendering on @mcp-ui/server.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -18,17 +18,17 @@
18
18
  "files": [
19
19
  "dist"
20
20
  ],
21
- "scripts": {
22
- "build": "tsc -p tsconfig.json",
23
- "test": "tsc -p tsconfig.json && node test/smoke.mjs"
24
- },
25
21
  "dependencies": {
26
- "@elicitkit/core": "workspace:*",
27
- "@elicitkit/renderers": "workspace:*",
28
22
  "@modelcontextprotocol/sdk": "^1.29.0",
29
- "zod": "^3.25.1"
23
+ "zod": "^3.25.1",
24
+ "@elicitkit/core": "0.1.2",
25
+ "@elicitkit/renderers": "0.1.2"
30
26
  },
31
27
  "publishConfig": {
32
28
  "access": "public"
29
+ },
30
+ "scripts": {
31
+ "build": "tsc -p tsconfig.json",
32
+ "test": "tsc -p tsconfig.json && node test/smoke.mjs"
33
33
  }
34
- }
34
+ }