Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions mcp-server/build/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions mcp-server/build/version.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export declare const FSB_SERVER_NAME = "fsb";
export declare const FSB_MCP_VERSION = "0.7.3";
export declare const FSB_MCP_VERSION = "0.7.4";
export declare const FSB_EXTENSION_BRIDGE_PORT = 7225;
export declare const FSB_EXTENSION_BRIDGE_URL: string;
export declare const FSB_EXTENSION_BRIDGE_URL = "ws://localhost:7225";
export declare const DEFAULT_HTTP_HOST = "127.0.0.1";
export declare const DEFAULT_HTTP_PORT = 7226;
export declare const FSB_REGISTRY_NAME = "io.github.lakshmanturlapati/fsb-mcp-server";
2 changes: 1 addition & 1 deletion mcp-server/build/version.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions mcp-server/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion mcp-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fsb-mcp-server",
"version": "0.7.3",
"version": "0.7.4",
"description": "FSB Browser Automation MCP Server",
"license": "BUSL-1.1",
"author": "Lakshman Turlapati",
Expand Down
4 changes: 2 additions & 2 deletions mcp-server/server.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
"name": "io.github.lakshmanturlapati/fsb-mcp-server",
"title": "FSB MCP Server",
"description": "Control the FSB browser extension from any MCP client using a local stdio or Streamable HTTP companion runtime.",
"version": "0.7.3",
"version": "0.7.4",
"packages": [
{
"registryType": "npm",
"identifier": "fsb-mcp-server",
"version": "0.7.3",
"version": "0.7.4",
"transport": {
"type": "stdio"
}
Expand Down
2 changes: 1 addition & 1 deletion mcp-server/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const FSB_SERVER_NAME = 'fsb';
export const FSB_MCP_VERSION = '0.7.3';
export const FSB_MCP_VERSION = '0.7.4';
export const FSB_EXTENSION_BRIDGE_PORT = 7225;
export const FSB_EXTENSION_BRIDGE_URL = `ws://localhost:${FSB_EXTENSION_BRIDGE_PORT}`;
export const DEFAULT_HTTP_HOST = '127.0.0.1';
Expand Down
2 changes: 1 addition & 1 deletion tests/mcp-version-parity.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function assertEqual(actual, expected, msg) {
}

const repoRoot = path.resolve(__dirname, '..');
const canonicalVersion = '0.7.3';
const canonicalVersion = '0.7.4';

function readText(relativePath) {
return fs.readFileSync(path.join(repoRoot, relativePath), 'utf8');
Expand Down
Loading