Skip to content

Commit 35ec56c

Browse files
authored
Merge pull request #39 from freema/fix/snapshot-visibility-and-error-handling
fix: Update version to 0.7.1 and simplify saveTo parameter descriptio…
2 parents 8aefe29 + 948ccb9 commit 35ec56c

File tree

6 files changed

+11
-5
lines changed

6 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.7.1] - 2026-02-13
11+
12+
### Fixed
13+
- Simplified `saveTo` parameter description in screenshot tools to remove opinionated usage instructions that were influencing AI assistant behavior
14+
1015
## [0.7.0] - 2026-02-13
1116

1217
### Added
@@ -179,6 +184,7 @@ Released on npm, see GitHub releases for details.
179184
- UID-based element referencing system
180185
- Headless mode support
181186

187+
[0.7.1]: https://github.com/freema/firefox-devtools-mcp/compare/v0.7.0...v0.7.1
182188
[0.7.0]: https://github.com/freema/firefox-devtools-mcp/compare/v0.6.1...v0.7.0
183189
[0.6.1]: https://github.com/freema/firefox-devtools-mcp/compare/v0.6.0...v0.6.1
184190
[0.5.3]: https://github.com/freema/firefox-devtools-mcp/compare/v0.5.2...v0.5.3

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "firefox-devtools-mcp",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"description": "Model Context Protocol (MCP) server for Firefox DevTools automation",
55
"author": "freema",
66
"license": "MIT",

src/config/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
*/
44

55
export const SERVER_NAME = 'firefox-devtools';
6-
export const SERVER_VERSION = '0.7.0';
6+
export const SERVER_VERSION = '0.7.1';

src/tools/screenshot.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import type { McpToolResponse } from '../types/common.js';
1111
const SAVE_TO_SCHEMA = {
1212
type: 'string',
1313
description:
14-
"Optional absolute file path to save the screenshot to instead of returning it as image data in the response. Use this in CLI environments (e.g. Claude Code) to avoid filling up the context window with large base64 image data. Example: '/tmp/screenshot.png'",
14+
'Optional file path to save the screenshot to instead of returning it as image data in the response.',
1515
} as const;
1616

1717
// Tool definitions

tests/config/constants.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ describe('Constants', () => {
2323
});
2424

2525
it('should match package.json version', () => {
26-
expect(SERVER_VERSION).toBe('0.7.0');
26+
expect(SERVER_VERSION).toBe('0.7.1');
2727
});
2828

2929
it('should be a non-empty string', () => {

tests/smoke.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ describe('Smoke Tests', () => {
1616

1717
it('should have valid server version', () => {
1818
expect(SERVER_VERSION).toMatch(/^\d+\.\d+\.\d+/);
19-
expect(SERVER_VERSION).toBe('0.7.0');
19+
expect(SERVER_VERSION).toBe('0.7.1');
2020
});
2121
});
2222

0 commit comments

Comments
 (0)