@velvetmonkey/flywheel-mcp 1.25.1 → 1.25.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 (3) hide show
  1. package/LICENSE +0 -0
  2. package/README.md +9 -9
  3. package/package.json +71 -71
package/LICENSE CHANGED
File without changes
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  The intelligence layer of [Flywheel](https://github.com/velvetmonkey/flywheel) — MCP tools for vault graph queries, wikilink services, and structure analysis.
4
4
 
5
- [![npm](https://img.shields.io/npm/v/@bencassie/flywheel-mcp)](https://www.npmjs.com/package/@bencassie/flywheel-mcp)
5
+ [![npm](https://img.shields.io/npm/v/@velvetmonkey/flywheel-mcp)](https://www.npmjs.com/package/@velvetmonkey/flywheel-mcp)
6
6
  [![License: Apache 2.0](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
7
7
  [![MCP](https://img.shields.io/badge/MCP-Compatible-blue)](https://modelcontextprotocol.io/)
8
8
 
@@ -17,13 +17,13 @@ Add to your project's `.mcp.json` (in your vault root). **Zero-config** if `.mcp
17
17
  "mcpServers": {
18
18
  "flywheel": {
19
19
  "command": "npx",
20
- "args": ["-y", "@bencassie/flywheel-mcp"]
20
+ "args": ["-y", "@velvetmonkey/flywheel-mcp"]
21
21
  }
22
22
  }
23
23
  }
24
24
  ```
25
25
 
26
- > **Note**: Windows native requires `"command": "cmd", "args": ["/c", "npx", "-y", "@bencassie/flywheel-mcp"]`
26
+ > **Note**: Windows native requires `"command": "cmd", "args": ["/c", "npx", "-y", "@velvetmonkey/flywheel-mcp"]`
27
27
 
28
28
  (details)
29
29
  (summary)(strong)Advanced: Pointing to a different vault(/strong)(/summary)
@@ -40,7 +40,7 @@ If `.mcp.json` is NOT in your vault, or you want to use a different vault, set `
40
40
  "mcpServers": {
41
41
  "flywheel": {
42
42
  "command": "npx",
43
- "args": ["-y", "@bencassie/flywheel-mcp"],
43
+ "args": ["-y", "@velvetmonkey/flywheel-mcp"],
44
44
  "env": {
45
45
  "PROJECT_PATH": "/path/to/your/vault"
46
46
  }
@@ -61,7 +61,7 @@ If `.mcp.json` is NOT in your vault, or you want to use a different vault, set `
61
61
  "mcpServers": {
62
62
  "flywheel": {
63
63
  "command": "npx",
64
- "args": ["-y", "@bencassie/flywheel-mcp"],
64
+ "args": ["-y", "@velvetmonkey/flywheel-mcp"],
65
65
  "env": {
66
66
  "PROJECT_PATH": "/mnt/c/Users/yourname/path/to/vault"
67
67
  }
@@ -80,7 +80,7 @@ If `.mcp.json` is NOT in your vault, or you want to use a different vault, set `
80
80
  "mcpServers": {
81
81
  "flywheel": {
82
82
  "command": "cmd",
83
- "args": ["/c", "npx", "-y", "@bencassie/flywheel-mcp"],
83
+ "args": ["/c", "npx", "-y", "@velvetmonkey/flywheel-mcp"],
84
84
  "env": {
85
85
  "PROJECT_PATH": "C:/Users/yourname/path/to/vault"
86
86
  }
@@ -107,13 +107,13 @@ Check the environment info shown at the start of your Claude Code session:
107
107
 
108
108
  ```bash
109
109
  # Zero-config (run from vault directory)
110
- claude mcp add flywheel -- npx -y @bencassie/flywheel-mcp
110
+ claude mcp add flywheel -- npx -y @velvetmonkey/flywheel-mcp
111
111
 
112
112
  # With explicit vault path
113
- claude mcp add flywheel --env PROJECT_PATH=/path/to/vault -- npx -y @bencassie/flywheel-mcp
113
+ claude mcp add flywheel --env PROJECT_PATH=/path/to/vault -- npx -y @velvetmonkey/flywheel-mcp
114
114
 
115
115
  # Windows (native) - with explicit path
116
- claude mcp add flywheel --env PROJECT_PATH=C:/path/to/vault -- cmd /c npx -y @bencassie/flywheel-mcp
116
+ claude mcp add flywheel --env PROJECT_PATH=C:/path/to/vault -- cmd /c npx -y @velvetmonkey/flywheel-mcp
117
117
  ```
118
118
 
119
119
  ### Verify
package/package.json CHANGED
@@ -1,71 +1,71 @@
1
- {
2
- "name": "@velvetmonkey/flywheel-mcp",
3
- "version": "1.25.1",
4
- "description": "Query your markdown like a database. 100x token savings for AI agents.",
5
- "type": "module",
6
- "main": "dist/index.js",
7
- "bin": {
8
- "flywheel-mcp": "dist/index.js"
9
- },
10
- "scripts": {
11
- "build": "npx esbuild src/index.ts --bundle --platform=node --format=esm --outfile=dist/index.js --packages=external",
12
- "postbuild": "node -e \"require('fs').chmodSync('dist/index.js', 0o755)\"",
13
- "dev": "npx tsx src/index.ts",
14
- "test": "vitest run",
15
- "test:watch": "vitest",
16
- "test:coverage": "vitest run --coverage",
17
- "inspect": "npx @modelcontextprotocol/inspector npx tsx src/index.ts",
18
- "prepublishOnly": "npm run build"
19
- },
20
- "files": [
21
- "dist",
22
- "README.md",
23
- "LICENSE"
24
- ],
25
- "dependencies": {
26
- "@modelcontextprotocol/sdk": "^1.25.1",
27
- "gray-matter": "^4.0.3",
28
- "zod": "^3.22.4"
29
- },
30
- "devDependencies": {
31
- "@types/node": "^20.0.0",
32
- "@vitest/coverage-v8": "^2.0.0",
33
- "esbuild": "^0.24.0",
34
- "mcp-testing-kit": "^0.2.0",
35
- "tsx": "^4.19.0",
36
- "typescript": "^5.0.0",
37
- "vitest": "^2.0.0"
38
- },
39
- "keywords": [
40
- "obsidian",
41
- "mcp",
42
- "model-context-protocol",
43
- "claude",
44
- "claude-code",
45
- "ai-agents",
46
- "agentic-workflows",
47
- "token-optimization",
48
- "knowledge-graph",
49
- "wikilinks",
50
- "backlinks",
51
- "vault-health",
52
- "markdown",
53
- "pkm",
54
- "zettelkasten",
55
- "knowledge-management",
56
- "graph-intelligence"
57
- ],
58
- "author": "Ben Cassie",
59
- "license": "Apache-2.0",
60
- "repository": {
61
- "type": "git",
62
- "url": "git+https://github.com/velvetmonkey/flywheel.git"
63
- },
64
- "bugs": {
65
- "url": "https://github.com/velvetmonkey/flywheel/issues"
66
- },
67
- "homepage": "https://github.com/velvetmonkey/flywheel#readme",
68
- "engines": {
69
- "node": ">=18"
70
- }
71
- }
1
+ {
2
+ "name": "@velvetmonkey/flywheel-mcp",
3
+ "version": "1.25.3",
4
+ "description": "Query your markdown like a database. 100x token savings for AI agents.",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "bin": {
8
+ "flywheel-mcp": "dist/index.js"
9
+ },
10
+ "scripts": {
11
+ "build": "npx esbuild src/index.ts --bundle --platform=node --format=esm --outfile=dist/index.js --packages=external",
12
+ "postbuild": "node -e \"require('fs').chmodSync('dist/index.js', 0o755)\"",
13
+ "dev": "npx tsx src/index.ts",
14
+ "test": "vitest run",
15
+ "test:watch": "vitest",
16
+ "test:coverage": "vitest run --coverage",
17
+ "inspect": "npx @modelcontextprotocol/inspector npx tsx src/index.ts",
18
+ "prepublishOnly": "npm run build"
19
+ },
20
+ "files": [
21
+ "dist",
22
+ "README.md",
23
+ "LICENSE"
24
+ ],
25
+ "dependencies": {
26
+ "@modelcontextprotocol/sdk": "^1.25.1",
27
+ "gray-matter": "^4.0.3",
28
+ "zod": "^3.22.4"
29
+ },
30
+ "devDependencies": {
31
+ "@types/node": "^20.0.0",
32
+ "@vitest/coverage-v8": "^2.0.0",
33
+ "esbuild": "^0.24.0",
34
+ "mcp-testing-kit": "^0.2.0",
35
+ "tsx": "^4.19.0",
36
+ "typescript": "^5.0.0",
37
+ "vitest": "^2.0.0"
38
+ },
39
+ "keywords": [
40
+ "obsidian",
41
+ "mcp",
42
+ "model-context-protocol",
43
+ "claude",
44
+ "claude-code",
45
+ "ai-agents",
46
+ "agentic-workflows",
47
+ "token-optimization",
48
+ "knowledge-graph",
49
+ "wikilinks",
50
+ "backlinks",
51
+ "vault-health",
52
+ "markdown",
53
+ "pkm",
54
+ "zettelkasten",
55
+ "knowledge-management",
56
+ "graph-intelligence"
57
+ ],
58
+ "author": "Velvet Monkey",
59
+ "license": "Apache-2.0",
60
+ "repository": {
61
+ "type": "git",
62
+ "url": "git+https://github.com/velvetmonkey/flywheel.git"
63
+ },
64
+ "bugs": {
65
+ "url": "https://github.com/velvetmonkey/flywheel/issues"
66
+ },
67
+ "homepage": "https://github.com/velvetmonkey/flywheel#readme",
68
+ "engines": {
69
+ "node": ">=18"
70
+ }
71
+ }