Skip to content

Commit 29fcd46

Browse files
Davison-FrancisNana K. Prempeh-Goldstein
andauthored
docs: add CHANGELOG.md per package + npm/license badges to root README (#5)
CHANGELOG.md per package ------------------------ Keep-a-Changelog format. Tracks release history for each of the three published npm packages independently: - deliveriq-mcp/CHANGELOG.md (1.0.0 → 1.1.1) - deliveriq-sdk/CHANGELOG.md (1.0.0 → 2.0.0) - min8t-plugin-sdk/CHANGELOG.md (1.0.0 → 1.0.3) Older releases attributed at "maintenance" granularity since this monorepo only goes back to 318c992 (initial migration commit). Root README badges ------------------ Adds the standard signal set that awesome-list curators look for: - MIT license badge - npm-version badge per package (3 of them) - npm monthly downloads for @deliveriq/mcp (the lead package) - MCP Registry "active" badge (Glama score badge already present, preserved.) Why --- Tier 4 from the marketing footprint plan. Awesome-list curators (currently watching e2b-dev/awesome-ai-sdks#174 + Mindbaz/awesome-opensource-email#29) routinely visit the linked repo before merging. CHANGELOG + version badges signal "active project, take it seriously" — improves merge odds and helps any agentic discovery scan that grades repos by surface signals. Co-authored-by: Nana K. Prempeh-Goldstein <nanak.prempeh-goldstein@Nanas-MacBook-Pro.local>
1 parent a0ed2e0 commit 29fcd46

4 files changed

Lines changed: 147 additions & 0 deletions

File tree

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Min8T SDKs
22

3+
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](./LICENSE)
4+
[![@deliveriq/mcp version](https://img.shields.io/npm/v/@deliveriq/mcp.svg?label=%40deliveriq%2Fmcp)](https://www.npmjs.com/package/@deliveriq/mcp)
5+
[![@deliveriq/mcp downloads](https://img.shields.io/npm/dm/@deliveriq/mcp.svg?label=downloads)](https://www.npmjs.com/package/@deliveriq/mcp)
6+
[![@deliveriq/sdk version](https://img.shields.io/npm/v/@deliveriq/sdk.svg?label=%40deliveriq%2Fsdk)](https://www.npmjs.com/package/@deliveriq/sdk)
7+
[![@min8t.com/plugin-sdk version](https://img.shields.io/npm/v/@min8t.com/plugin-sdk.svg?label=%40min8t.com%2Fplugin-sdk)](https://www.npmjs.com/package/@min8t.com/plugin-sdk)
8+
[![MCP Registry](https://img.shields.io/badge/MCP%20Registry-active-brightgreen)](https://registry.modelcontextprotocol.io/)
39
[![Davison-Francis/min8t-sdks MCP server](https://glama.ai/mcp/servers/Davison-Francis/min8t-sdks/badges/score.svg)](https://glama.ai/mcp/servers/Davison-Francis/min8t-sdks)
410

511
Open-source SDKs and MCP server for the [DeliverIQ](https://min8t.com/deliveriq)

deliveriq-mcp/CHANGELOG.md

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# Changelog
2+
3+
All notable changes to `@deliveriq/mcp` will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [1.1.1] - 2026-05-02
9+
10+
### Added
11+
- `mcpName` field in `package.json` (`io.github.Davison-Francis/deliveriq-mcp`) required for verification on Anthropic's official [MCP Registry](https://registry.modelcontextprotocol.io/).
12+
13+
### Notes
14+
- Listing on the official MCP Registry is now active. Users can discover the server via the registry CLI or the registry's web search.
15+
16+
## [1.1.0] - 2026-05-01
17+
18+
### Changed
19+
- Phase D release published alongside `@deliveriq/sdk@2.0.0`.
20+
- Aligned `domain-intel` field names with actual route response shape.
21+
22+
### Added
23+
- Bundle-size metadata.
24+
25+
## [1.0.3] - 2026-05-01
26+
27+
### Added
28+
- Lockfiles + `bundleSize` metadata after publishing.
29+
30+
## [1.0.2] - 2026-04-22
31+
32+
### Changed
33+
- Maintenance release — package metadata polish.
34+
35+
## [1.0.1] - 2026-04-22
36+
37+
### Changed
38+
- Maintenance release.
39+
40+
## [1.0.0] - 2026-03-05
41+
42+
### Added
43+
- Initial release.
44+
- 12 MCP tools mapping to the 5-stage / 21-check email-verification pipeline:
45+
- **Format** — RFC 5322 syntax + Sift3 typo detection.
46+
- **Domain & provider** — disposable detection (164k+ domains), role-prefix detection, free-provider check, alias normalization, pattern entropy.
47+
- **Mailbox** — MX resolution, ISP identification, SMTP handshake with catch-all probe.
48+
- **Reputation** — Gravatar, 50 DNSBL zones, RDAP domain age, HIBP breach, 15 DKIM selectors, 6-standard infra score (SPF/DKIM/DMARC/MTA-STS/BIMI/TLS-RPT), MX server reputation.
49+
- **Scoring** — spam-trap heuristics (13 weighted signals), composite domain trust score, 0–100 deliverability score, classification (Safe / Risky / Invalid / Unknown).
50+
51+
[1.1.1]: https://github.com/Davison-Francis/min8t-sdks/releases/tag/deliveriq-mcp%401.1.1
52+
[1.1.0]: https://github.com/Davison-Francis/min8t-sdks/releases/tag/deliveriq-mcp%401.1.0
53+
[1.0.3]: https://www.npmjs.com/package/@deliveriq/mcp/v/1.0.3
54+
[1.0.2]: https://www.npmjs.com/package/@deliveriq/mcp/v/1.0.2
55+
[1.0.1]: https://www.npmjs.com/package/@deliveriq/mcp/v/1.0.1
56+
[1.0.0]: https://www.npmjs.com/package/@deliveriq/mcp/v/1.0.0

deliveriq-sdk/CHANGELOG.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# Changelog
2+
3+
All notable changes to `@deliveriq/sdk` will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [2.0.0] - 2026-05-01
9+
10+
### Changed
11+
- **Breaking:** Phase D launch. Aligned `domain-intel` field names with the actual route response (`@deliveriq/sdk` and `@deliveriq/mcp` both updated).
12+
- See migration notes in the [release commit](https://github.com/Davison-Francis/min8t-sdks/commit/c56e6ad).
13+
14+
### Added
15+
- Bundle-size metadata for npm.
16+
17+
## [1.1.2] - 2026-05-01
18+
19+
### Added
20+
- Lockfiles + `bundleSize` metadata after publishing.
21+
22+
## [1.1.1] - 2026-04-22
23+
24+
### Changed
25+
- Maintenance release — package metadata polish.
26+
27+
## [1.1.0] - 2026-04-22
28+
29+
### Changed
30+
- Internal refactors and SDK ergonomics improvements.
31+
32+
## [1.0.0] - 2026-03-05
33+
34+
### Added
35+
- Initial release of the official Node.js SDK for the DeliverIQ email verification API.
36+
- Methods covering the public REST surface:
37+
- Single-email verification
38+
- Batch verification (async, up to 100K addresses per job)
39+
- DNSBL blacklist check
40+
- Domain intelligence
41+
- Spam-trap analysis
42+
- Email finder
43+
- Organization-pattern intel
44+
- Account/credit info
45+
46+
[2.0.0]: https://github.com/Davison-Francis/min8t-sdks/releases/tag/deliveriq-sdk%402.0.0
47+
[1.1.2]: https://www.npmjs.com/package/@deliveriq/sdk/v/1.1.2
48+
[1.1.1]: https://www.npmjs.com/package/@deliveriq/sdk/v/1.1.1
49+
[1.1.0]: https://www.npmjs.com/package/@deliveriq/sdk/v/1.1.0
50+
[1.0.0]: https://www.npmjs.com/package/@deliveriq/sdk/v/1.0.0

min8t-plugin-sdk/CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Changelog
2+
3+
All notable changes to `@min8t.com/plugin-sdk` will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [1.0.3] - 2026-05-01
9+
10+
### Added
11+
- Lockfiles + `bundleSize` metadata after publishing.
12+
- Phase D release shipped alongside `@deliveriq/sdk@2.0.0` and `@deliveriq/mcp@1.1.0`.
13+
14+
## [1.0.2] - 2026-05-01
15+
16+
### Changed
17+
- Maintenance release — package metadata polish.
18+
19+
## [1.0.1] - 2026-04-22
20+
21+
### Changed
22+
- Maintenance release.
23+
24+
## [1.0.0] - 2026-02-22
25+
26+
### Added
27+
- Initial release of the embeddable email-editor SDK.
28+
- UMD + ESM bundles, framework-agnostic.
29+
- Authentication via `ES-PLUGIN-AUTH` header (project-scoped tokens).
30+
- Full integration with the MiN8T email-editor backend.
31+
32+
[1.0.3]: https://github.com/Davison-Francis/min8t-sdks/releases/tag/min8t-plugin-sdk%401.0.3
33+
[1.0.2]: https://www.npmjs.com/package/@min8t.com/plugin-sdk/v/1.0.2
34+
[1.0.1]: https://www.npmjs.com/package/@min8t.com/plugin-sdk/v/1.0.1
35+
[1.0.0]: https://www.npmjs.com/package/@min8t.com/plugin-sdk/v/1.0.0

0 commit comments

Comments
 (0)