blackveil-dns 2.10.1 → 2.10.7

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
@@ -9,12 +9,12 @@ Open-source DNS & email security scanner for Claude, Cursor, VS Code, and MCP cl
9
9
  [![GitHub stars](https://img.shields.io/github/stars/MadaBurns/bv-mcp?style=flat&logo=github)](https://github.com/MadaBurns/bv-mcp/stargazers)
10
10
  [![npm version](https://img.shields.io/npm/v/blackveil-dns)](https://www.npmjs.com/package/blackveil-dns)
11
11
  [![npm downloads](https://img.shields.io/npm/dm/blackveil-dns)](https://www.npmjs.com/package/blackveil-dns)
12
- [![Tests](https://img.shields.io/badge/Tests-2317-brightgreen)](https://github.com/MadaBurns/bv-mcp/actions)
12
+ [![Tests](https://img.shields.io/badge/Tests-2587-brightgreen)](https://github.com/MadaBurns/bv-mcp/actions)
13
13
  [![Coverage](https://img.shields.io/badge/Coverage-~90%25-brightgreen)](https://github.com/MadaBurns/bv-mcp/actions)
14
14
  [![BUSL-1.1 License](https://img.shields.io/badge/License-BUSL--1.1-blue.svg)](LICENSE)
15
15
  [![MCP](https://img.shields.io/badge/MCP-2025--03--26-blue)](https://modelcontextprotocol.io/)
16
16
  [![Cloudflare Workers](https://img.shields.io/badge/Cloudflare%20Workers-F38020?logo=cloudflare&logoColor=white)](https://workers.cloudflare.com/)
17
- [![TypeScript](https://img.shields.io/badge/TypeScript-5.5-3178C6?logo=typescript&logoColor=white)](https://www.typescriptlang.org/)
17
+ [![TypeScript](https://img.shields.io/badge/TypeScript-5.9-3178C6?logo=typescript&logoColor=white)](https://www.typescriptlang.org/)
18
18
 
19
19
  ![DNS Security](https://dns-mcp.blackveilsecurity.com/badge/blackveilsecurity.com)
20
20
 
@@ -170,7 +170,7 @@ The free tier requires no authentication. Authenticated requests bypass per-IP r
170
170
 
171
171
  - **Header**: `Authorization: Bearer <KEY>`
172
172
  - **Query Param**: `?api_key=<KEY>` (for clients that can't send custom headers — Smithery, Claude Code)
173
- - **OAuth 2.1**: authorization-code flow with PKCE, discovered via `/.well-known/oauth-authorization-server` used by the Claude mobile custom connector.
173
+ - **OAuth 2.1**: optional authorization-code flow with PKCE, enabled only when operators set `ENABLE_OAUTH=true`; owner-key consent is separately gated by `ENABLE_OWNER_OAUTH=true`.
174
174
 
175
175
  For full hosted setup examples, stdio usage, OAuth setup, and legacy fallback endpoints, see [**docs/client-setup.md**](docs/client-setup.md).
176
176
 
package/dist/index.d.ts CHANGED
@@ -192,7 +192,7 @@ declare function sanitizeDomain(input: string): string;
192
192
  declare function sanitizeInput(input: string, maxLength?: number): string;
193
193
 
194
194
  /** Server version — keep in sync with package.json */
195
- declare const SERVER_VERSION = "2.10.1";
195
+ declare const SERVER_VERSION = "2.10.7";
196
196
 
197
197
  /**
198
198
  * Map of every tool name to its Zod argument schema.
package/dist/index.js CHANGED
@@ -587,7 +587,7 @@ function sanitizeInput(input, maxLength = 500) {
587
587
  }
588
588
 
589
589
  // src/lib/server-version.ts
590
- var SERVER_VERSION = "2.10.1";
590
+ var SERVER_VERSION = "2.10.7";
591
591
  var DomainSchema = z.string().min(1).max(253);
592
592
  z.string().regex(/^[0-9a-f]{64}$/);
593
593
  var DkimSelectorSchema = z.string().transform((s) => s.trim().toLowerCase()).pipe(z.string().max(63).regex(/^[a-z0-9]([a-z0-9-]*[a-z0-9])?$/));