Skip to content

Commit 0884d79

Browse files
committed
fula-mcp
1 parent 1f06606 commit 0884d79

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

crates/fula-mcp/npm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@functionland/fula-mcp",
3-
"version": "0.6.17",
3+
"version": "0.6.18",
44
"description": "Local MCP (Model Context Protocol) stdio server for Fula decentralized storage — store/retrieve files in FxFiles' end-to-end-encrypted format directly from Claude Desktop, Claude Code, Codex CLI, or Gemini CLI. Run build-free via `npx @functionland/fula-mcp`.",
55
"bin": {
66
"fula-mcp": "bin/fula-mcp.js"

crates/fula-mcp/npm/test/targets.test.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,21 +50,21 @@ test('resolveTarget throws EUNSUPPORTED for unknown platform/arch', () => {
5050
});
5151

5252
test('releaseTag uses the collision-safe fula-mcp-v prefix (NOT bare v)', () => {
53-
assert.equal(releaseTag('0.6.17'), 'fula-mcp-v0.6.17');
53+
assert.equal(releaseTag('0.6.18'), 'fula-mcp-v0.6.18');
5454
assert.equal(releaseTag('1.2.3-rc.1'), 'fula-mcp-v1.2.3-rc.1');
5555
});
5656

5757
test('downloadUrl builds the functionland/fula-api release asset URL', () => {
5858
const { assetName } = resolveTarget('linux', 'x64');
5959
assert.equal(
60-
downloadUrl('0.6.17', assetName),
60+
downloadUrl('0.6.18', assetName),
6161
'https://github.com/functionland/fula-api/releases/download/' +
62-
'fula-mcp-v0.6.17/fula-mcp-x86_64-unknown-linux-gnu'
62+
'fula-mcp-v0.6.18/fula-mcp-x86_64-unknown-linux-gnu'
6363
);
6464
const win = resolveTarget('win32', 'x64');
6565
assert.equal(
66-
downloadUrl('0.6.17', win.assetName),
66+
downloadUrl('0.6.18', win.assetName),
6767
'https://github.com/functionland/fula-api/releases/download/' +
68-
'fula-mcp-v0.6.17/fula-mcp-x86_64-pc-windows-msvc.exe'
68+
'fula-mcp-v0.6.18/fula-mcp-x86_64-pc-windows-msvc.exe'
6969
);
7070
});

crates/fula-mcp/npm/test/verify.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ test('expectedHashFor reads flat map', () => {
3838
});
3939

4040
test('expectedHashFor reads wrapped { checksums: {...} } map', () => {
41-
const cs = { version: '0.6.17', checksums: { 'fula-mcp-x86_64-apple-darwin': 'B'.repeat(64) } };
41+
const cs = { version: '0.6.18', checksums: { 'fula-mcp-x86_64-apple-darwin': 'B'.repeat(64) } };
4242
// also normalizes case to lowercase
4343
assert.equal(expectedHashFor(cs, 'fula-mcp-x86_64-apple-darwin'), 'b'.repeat(64));
4444
});

0 commit comments

Comments
 (0)