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: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.7.1] - 2026-02-13

### Fixed
- Simplified `saveTo` parameter description in screenshot tools to remove opinionated usage instructions that were influencing AI assistant behavior

## [0.7.0] - 2026-02-13

### Added
Expand Down Expand Up @@ -179,6 +184,7 @@ Released on npm, see GitHub releases for details.
- UID-based element referencing system
- Headless mode support

[0.7.1]: https://github.com/freema/firefox-devtools-mcp/compare/v0.7.0...v0.7.1
[0.7.0]: https://github.com/freema/firefox-devtools-mcp/compare/v0.6.1...v0.7.0
[0.6.1]: https://github.com/freema/firefox-devtools-mcp/compare/v0.6.0...v0.6.1
[0.5.3]: https://github.com/freema/firefox-devtools-mcp/compare/v0.5.2...v0.5.3
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "firefox-devtools-mcp",
"version": "0.7.0",
"version": "0.7.1",
"description": "Model Context Protocol (MCP) server for Firefox DevTools automation",
"author": "freema",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/config/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
*/

export const SERVER_NAME = 'firefox-devtools';
export const SERVER_VERSION = '0.7.0';
export const SERVER_VERSION = '0.7.1';
2 changes: 1 addition & 1 deletion src/tools/screenshot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import type { McpToolResponse } from '../types/common.js';
const SAVE_TO_SCHEMA = {
type: 'string',
description:
"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'",
'Optional file path to save the screenshot to instead of returning it as image data in the response.',
} as const;

// Tool definitions
Expand Down
2 changes: 1 addition & 1 deletion tests/config/constants.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ describe('Constants', () => {
});

it('should match package.json version', () => {
expect(SERVER_VERSION).toBe('0.7.0');
expect(SERVER_VERSION).toBe('0.7.1');
});

it('should be a non-empty string', () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/smoke.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ describe('Smoke Tests', () => {

it('should have valid server version', () => {
expect(SERVER_VERSION).toMatch(/^\d+\.\d+\.\d+/);
expect(SERVER_VERSION).toBe('0.7.0');
expect(SERVER_VERSION).toBe('0.7.1');
});
});

Expand Down