hvtracker-mcp 0.1.0 → 0.1.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.
package/README.md CHANGED
@@ -18,7 +18,7 @@ The hosted remote server is:
18
18
  This repository also provides a local stdio package for clients that prefer
19
19
  package-based installation.
20
20
 
21
- <!-- mcp-name: io.github.yugantm/hvtracker-mcp -->
21
+ <!-- mcp-name: io.github.YugantM/hvtracker-mcp -->
22
22
 
23
23
  ## Tools
24
24
 
@@ -81,7 +81,7 @@ PyPI, and GHCR packages for the same version are live.
81
81
  The server name is:
82
82
 
83
83
  ```text
84
- io.github.yugantm/hvtracker-mcp
84
+ io.github.YugantM/hvtracker-mcp
85
85
  ```
86
86
 
87
87
  ## Claude Desktop Extension
@@ -6,7 +6,7 @@ import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
6
6
  import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
7
7
  import { z } from "zod";
8
8
 
9
- const VERSION = "0.1.0";
9
+ const VERSION = "0.1.1";
10
10
  const DEFAULT_BASE_URL = "https://hvtracker.net";
11
11
  const BASE_URL = (process.env.HVTRACKER_BASE_URL || DEFAULT_BASE_URL).replace(/\/+$/, "");
12
12
  const TIMEOUT_MS = Number(process.env.HVTRACKER_TIMEOUT_SECONDS || 20) * 1000;
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "hvtracker-mcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "MCP server for HVTracker trust checks.",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
- "mcpName": "io.github.yugantm/hvtracker-mcp",
7
+ "mcpName": "io.github.YugantM/hvtracker-mcp",
8
8
  "bin": {
9
- "hvtracker-mcp": "./bin/hvtracker-mcp.js"
9
+ "hvtracker-mcp": "bin/hvtracker-mcp.js"
10
10
  },
11
11
  "files": [
12
12
  "bin/",
package/server.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
- "name": "io.github.yugantm/hvtracker-mcp",
3
+ "name": "io.github.YugantM/hvtracker-mcp",
4
4
  "title": "HVTracker MCP",
5
5
  "description": "Pre-connect trust checks for AI agents and MCP servers using HVTracker's public trust registry.",
6
- "version": "0.1.0",
6
+ "version": "0.1.1",
7
7
  "repository": {
8
8
  "url": "https://github.com/YugantM/hvtracker-mcp",
9
9
  "source": "github"
@@ -18,7 +18,7 @@
18
18
  {
19
19
  "registryType": "npm",
20
20
  "identifier": "hvtracker-mcp",
21
- "version": "0.1.0",
21
+ "version": "0.1.1",
22
22
  "transport": {
23
23
  "type": "stdio"
24
24
  }
@@ -26,14 +26,14 @@
26
26
  {
27
27
  "registryType": "pypi",
28
28
  "identifier": "hvtracker-mcp",
29
- "version": "0.1.0",
29
+ "version": "0.1.1",
30
30
  "transport": {
31
31
  "type": "stdio"
32
32
  }
33
33
  },
34
34
  {
35
35
  "registryType": "oci",
36
- "identifier": "ghcr.io/yugantm/hvtracker-mcp:0.1.0",
36
+ "identifier": "ghcr.io/yugantm/hvtracker-mcp:v0.1.1",
37
37
  "transport": {
38
38
  "type": "stdio"
39
39
  }