@yourtechtribe-labs/koncept-mcp-server 0.1.0-alpha.1 → 0.1.0-alpha.3

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 (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +27 -5
package/README.md CHANGED
@@ -10,10 +10,10 @@ Reads a project's `.koncept/concepts/*.yaml` registry and exposes 4 read-only to
10
10
 
11
11
  | Tool | Purpose |
12
12
  |---|---|
13
- | `koncept-search` | Full-text + tag search across concepts |
14
- | `koncept-get` | Fetch a concept by id (full payload) |
15
- | `koncept-for-file` | List concepts where a file appears as participant |
16
- | `koncept-invariants-at-scope` | Return invariants whose concept overlaps a scope |
13
+ | `koncept_search` | Full-text + tag search across concepts |
14
+ | `koncept_get` | Fetch a concept by id (full payload) |
15
+ | `koncept_for_file` | List concepts where a file appears as participant |
16
+ | `koncept_invariants_at_scope` | Return invariants whose concept overlaps a scope |
17
17
 
18
18
  Drop this in front of Claude Code, Cursor, or any other MCP client and the agent gains read-Step-0 awareness of cross-cutting semantic facts that don't show up in the AST.
19
19
 
package/package.json CHANGED
@@ -1,10 +1,26 @@
1
1
  {
2
2
  "name": "@yourtechtribe-labs/koncept-mcp-server",
3
- "version": "0.1.0-alpha.1",
4
- "description": "MCP server exposing semantic concept graph tools (koncept_get, koncept_for_file, koncept_search, koncept_invariants_at_scope).",
3
+ "version": "0.1.0-alpha.3",
4
+ "description": "MCP server exposing semantic concept graph tools (koncept_search, koncept_get, koncept_for_file, koncept_invariants_at_scope).",
5
+ "keywords": [
6
+ "mcp",
7
+ "model-context-protocol",
8
+ "modelcontextprotocol",
9
+ "claude",
10
+ "claude-code",
11
+ "ai-tools",
12
+ "concept-graph",
13
+ "knowledge-graph",
14
+ "yaml"
15
+ ],
5
16
  "type": "module",
6
- "main": "./dist/index.js",
7
17
  "types": "./dist/index.d.ts",
18
+ "exports": {
19
+ ".": {
20
+ "types": "./dist/index.d.ts",
21
+ "import": "./dist/index.js"
22
+ }
23
+ },
8
24
  "bin": {
9
25
  "koncept-mcp": "./dist/index.js"
10
26
  },
@@ -12,9 +28,12 @@
12
28
  "dist",
13
29
  "README.md"
14
30
  ],
31
+ "engines": {
32
+ "node": ">=18.0.0"
33
+ },
15
34
  "dependencies": {
16
35
  "@modelcontextprotocol/sdk": "1.29.0",
17
- "@yourtechtribe-labs/koncept-core": "^0.1.0-alpha.1",
36
+ "@yourtechtribe-labs/koncept-core": "^0.1.0-alpha.3",
18
37
  "zod": "4.4.2"
19
38
  },
20
39
  "publishConfig": {
@@ -22,7 +41,10 @@
22
41
  "tag": "alpha"
23
42
  },
24
43
  "license": "MIT",
25
- "homepage": "https://github.com/yourtechtribe-labs/koncept-mcp",
44
+ "homepage": "https://github.com/yourtechtribe-labs/koncept-mcp#readme",
45
+ "bugs": {
46
+ "url": "https://github.com/yourtechtribe-labs/koncept-mcp/issues"
47
+ },
26
48
  "repository": {
27
49
  "type": "git",
28
50
  "url": "https://github.com/yourtechtribe-labs/koncept-mcp",