@fundzwatch/mcp-server 1.0.1 → 1.0.2

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.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Fundz Inc.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # FundzWatch MCP Server
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/@fundzwatch/mcp-server.svg)](https://www.npmjs.com/package/@fundzwatch/mcp-server)
4
+ [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
5
+ [![Node](https://img.shields.io/node/v/@fundzwatch/mcp-server.svg)](https://www.npmjs.com/package/@fundzwatch/mcp-server)
6
+
3
7
  Real-time business event intelligence for AI agents via [Model Context Protocol](https://modelcontextprotocol.io).
4
8
 
5
9
  Get AI-scored sales leads, funding rounds, acquisitions, executive hires, and market intelligence directly in Claude, Cursor, Windsurf, or any MCP-compatible client.
@@ -12,7 +16,11 @@ Sign up at [fundzwatch.ai/onboarding](https://fundzwatch.ai/onboarding) (no cred
12
16
 
13
17
  ### 2. Add to Claude Desktop
14
18
 
15
- Edit your Claude Desktop config (`~/Library/Application Support/Claude/claude_desktop_config.json`):
19
+ Edit your Claude Desktop config:
20
+
21
+ - **macOS:** `~/Library/Application Support/Claude/claude_desktop_config.json`
22
+ - **Windows:** `%APPDATA%\Claude\claude_desktop_config.json`
23
+ - **Linux:** `~/.config/Claude/claude_desktop_config.json`
16
24
 
17
25
  ```json
18
26
  {
package/dist/index.js CHANGED
@@ -21,7 +21,7 @@ async function apiRequest(method, path, params) {
21
21
  headers: {
22
22
  Authorization: `Bearer ${apiKey}`,
23
23
  "Content-Type": "application/json",
24
- "User-Agent": "fundzwatch-mcp/1.0.0",
24
+ "User-Agent": "fundzwatch-mcp/1.0.1",
25
25
  },
26
26
  };
27
27
  if (method === "GET" && params) {
@@ -45,7 +45,7 @@ function textResult(text) {
45
45
  return { content: [{ type: "text", text }] };
46
46
  }
47
47
  // ─── Server Setup ───────────────────────────────────────────────────────
48
- const server = new index_js_1.Server({ name: "fundzwatch", version: "1.0.0" }, { capabilities: { tools: {} } });
48
+ const server = new index_js_1.Server({ name: "fundzwatch", version: "1.0.1" }, { capabilities: { tools: {} } });
49
49
  // ─── List Tools ─────────────────────────────────────────────────────────
50
50
  server.setRequestHandler(types_js_1.ListToolsRequestSchema, async () => ({
51
51
  tools: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fundzwatch/mcp-server",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "MCP server for FundzWatch.ai — Real-time business event intelligence for AI agents",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
package/src/index.ts CHANGED
@@ -31,7 +31,7 @@ async function apiRequest(
31
31
  headers: {
32
32
  Authorization: `Bearer ${apiKey}`,
33
33
  "Content-Type": "application/json",
34
- "User-Agent": "fundzwatch-mcp/1.0.0",
34
+ "User-Agent": "fundzwatch-mcp/1.0.1",
35
35
  },
36
36
  };
37
37
 
@@ -62,7 +62,7 @@ function textResult(text: string) {
62
62
  // ─── Server Setup ───────────────────────────────────────────────────────
63
63
 
64
64
  const server = new Server(
65
- { name: "fundzwatch", version: "1.0.0" },
65
+ { name: "fundzwatch", version: "1.0.1" },
66
66
  { capabilities: { tools: {} } }
67
67
  );
68
68