Skip to content

Commit 61613d6

Browse files
committed
Update release version to 0.3.1 and tidy README
1 parent 33c20c7 commit 61613d6

File tree

3 files changed

+2
-13
lines changed

3 files changed

+2
-13
lines changed

README.md

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -142,20 +142,9 @@ The server supports several environment variables for configuration:
142142
- **HTTP/2 issues**: The server automatically handles HTTP/2 protocol errors with fallback to HTTP/1.1
143143

144144
### Search Quality Issues
145-
- **Irrelevant results**: The server now includes automatic quality validation to detect irrelevant results
146145
- **Enable quality checking**: Set `ENABLE_RELEVANCE_CHECKING=true` (enabled by default)
147146
- **Adjust quality threshold**: Set `RELEVANCE_THRESHOLD=0.5` for stricter quality requirements
148147
- **Force multi-engine search**: Set `FORCE_MULTI_ENGINE_SEARCH=true` to try all engines and return the best results
149-
- **Disable quality checking**: Set `ENABLE_RELEVANCE_CHECKING=false` to disable validation (not recommended)
150-
151-
### Browser Context Issues
152-
- **"Target page, context or browser has been closed" errors**: COMPLETELY ELIMINATED with dedicated browser architecture
153-
- **Zero browser sharing**: Each search engine creates and manages its own dedicated browser instance
154-
- **Automatic cleanup**: Each browser is automatically closed after its search completes
155-
- **Retry mechanism**: 2-attempt retry with fresh browser instances on failures
156-
- **Enhanced reliability**: No cross-contamination between search engines possible
157-
- **Firefox isMobile compatibility**: Robust Firefox detection to prevent unsupported option errors
158-
- **Simplified architecture**: Removed complex browser pooling in favor of dedicated instances
159148

160149
### Memory Usage
161150
- **Automatic cleanup**: Browsers are automatically cleaned up after each operation to prevent memory leaks

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web-search-mcp-server",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"description": "MCP server for web search with full page content extraction, search summaries, and single page content extraction",
55
"license": "MIT",
66
"type": "module",

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class WebSearchMCPServer {
1717
constructor() {
1818
this.server = new McpServer({
1919
name: 'web-search-mcp',
20-
version: '0.3.0',
20+
version: '0.3.1',
2121
});
2222

2323
this.searchEngine = new SearchEngine();

0 commit comments

Comments
 (0)