browse-ai 0.3.0 → 0.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +30 -3
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -1,8 +1,16 @@
1
1
  # browse-ai → browseai-dev
2
2
 
3
- **This package has been renamed to [`browseai-dev`](https://www.npmjs.com/package/browseai-dev).**
3
+ **This package has been renamed to [`browseai-dev`](https://www.npmjs.com/package/browseai-dev).** All future development happens under `browseai-dev`.
4
4
 
5
- Installing `browse-ai` will automatically install `browseai-dev` and proxy all commands.
5
+ Installing `browse-ai` will automatically install `browseai-dev` and proxy all commands. Both old and new commands work.
6
+
7
+ ## What is BrowseAI Dev?
8
+
9
+ BrowseAI Dev is open-source research infrastructure for AI agents. It provides an MCP server with real-time web search, evidence-backed citations, confidence scores, and contradiction detection. Works with Claude, Cursor, Windsurf, and any MCP-compatible client.
10
+
11
+ - **MCP Server**: `npx browseai-dev` (or `npx browse-ai`)
12
+ - **Python SDK**: `pip install browseaidev`
13
+ - **REST API**: `https://browseai.dev/api/browse/*`
6
14
 
7
15
  ## Migration
8
16
 
@@ -14,4 +22,23 @@ npx browse-ai
14
22
  npx browseai-dev
15
23
  ```
16
24
 
17
- All future development happens in the [`browseai-dev`](https://github.com/BrowseAI-HQ/BrowseAI-Dev) package.
25
+ ## MCP Configuration
26
+
27
+ ```json
28
+ {
29
+ "mcpServers": {
30
+ "browseai-dev": {
31
+ "command": "npx",
32
+ "args": ["-y", "browseai-dev"]
33
+ }
34
+ }
35
+ }
36
+ ```
37
+
38
+ ## Links
39
+
40
+ - Website: https://browseai.dev
41
+ - GitHub: https://github.com/BrowseAI-HQ/BrowseAI-Dev
42
+ - npm (new): https://www.npmjs.com/package/browseai-dev
43
+ - PyPI: https://pypi.org/project/browseaidev/
44
+ - Discord: https://discord.gg/ubAuT4YQsT
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "browse-ai",
3
- "version": "0.3.0",
4
- "description": "This package has been renamed to browseai-dev. Installing browse-ai will automatically install browseai-dev.",
3
+ "version": "0.3.1",
4
+ "description": "Research infrastructure for AI agents. Renamed to browseai-dev installing browse-ai automatically installs browseai-dev. MCP server, REST API, Python SDK.",
5
+ "keywords": ["browse-ai", "browseai-dev", "browseai", "mcp", "mcp-server", "ai-agent", "web-search", "research", "citations", "fact-checking", "claude", "cursor", "windsurf", "model-context-protocol"],
5
6
  "license": "MIT",
6
7
  "repository": {
7
8
  "type": "git",