@kryptosai/mcp-observatory 0.26.0 → 0.27.0
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/COMMERCIAL.md +7 -8
- package/PRIVACY.md +5 -5
- package/README.md +38 -24
- package/TERMS.md +1 -1
- package/dist/src/checks/schema-quality.js +1 -0
- package/dist/src/checks/schema-quality.js.map +1 -1
- package/dist/src/commands/enterprise-report.js +1 -1
- package/dist/src/commands/helpers.d.ts +3 -1
- package/dist/src/commands/helpers.js +2 -2
- package/dist/src/commands/helpers.js.map +1 -1
- package/dist/src/commands/init-ci.d.ts +2 -0
- package/dist/src/commands/init-ci.js +51 -10
- package/dist/src/commands/init-ci.js.map +1 -1
- package/dist/src/commands/legacy.js +18 -2
- package/dist/src/commands/legacy.js.map +1 -1
- package/dist/src/commands/scan.js +30 -9
- package/dist/src/commands/scan.js.map +1 -1
- package/dist/src/commands/setup-ci-conversion.d.ts +25 -0
- package/dist/src/commands/setup-ci-conversion.js +119 -0
- package/dist/src/commands/setup-ci-conversion.js.map +1 -0
- package/dist/src/commands/test.js +50 -3
- package/dist/src/commands/test.js.map +1 -1
- package/dist/src/findings.d.ts +20 -0
- package/dist/src/findings.js +232 -0
- package/dist/src/findings.js.map +1 -0
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.js +1 -0
- package/dist/src/index.js.map +1 -1
- package/dist/src/reporters/sarif.d.ts +4 -1
- package/dist/src/reporters/sarif.js +58 -37
- package/dist/src/reporters/sarif.js.map +1 -1
- package/dist/src/storage.d.ts +1 -0
- package/dist/src/storage.js +25 -0
- package/dist/src/storage.js.map +1 -1
- package/dist/src/telemetry.d.ts +3 -0
- package/dist/src/telemetry.js.map +1 -1
- package/docs/agent-runtime-quickstart.md +98 -0
- package/docs/code-scanning-launch-outreach.md +55 -0
- package/docs/feishu-lark-mcp.md +3 -3
- package/docs/github-code-scanning-for-mcp.md +94 -0
- package/docs/metrics-dashboard.md +2 -2
- package/docs/openclaw-agent-template/SOUL.md +156 -0
- package/docs/proof.md +4 -4
- package/docs/target-contribution-guide.md +139 -0
- package/docs/target-registry.md +116 -0
- package/package.json +33 -8
- package/docs/certification-campaign-template.md +0 -181
- package/docs/certification-distribution.md +0 -145
- package/docs/certification-pr-campaign.md +0 -68
- package/docs/clone-to-ci-campaign.md +0 -62
- package/docs/directory-listing-copy.md +0 -85
- package/docs/distribution-launch.md +0 -76
- package/docs/ecosystem-distribution-kit.md +0 -79
- package/docs/enterprise-outreach-playbook.md +0 -83
- package/docs/paid-pilot-offer.md +0 -74
- package/docs/project-case-study.md +0 -140
- package/docs/public-post-drafts.md +0 -98
- package/docs/publish-readiness.md +0 -79
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
# Ecosystem Distribution Kit
|
|
2
|
-
|
|
3
|
-
Use this kit when submitting MCP Observatory to directories, marketplaces, newsletters, and awesome lists.
|
|
4
|
-
|
|
5
|
-
## One-Line Description
|
|
6
|
-
|
|
7
|
-
MCP Observatory is the CI and security gate for MCP servers before agents depend on them.
|
|
8
|
-
|
|
9
|
-
## Short Listing
|
|
10
|
-
|
|
11
|
-
MCP Observatory tests MCP servers for startup health, capability discovery, schema drift, common security footguns, health scoring, badges, and GitHub Action CI. It can run locally, in CI, or as an MCP server for agent-accessible diagnostics.
|
|
12
|
-
|
|
13
|
-
## Tags
|
|
14
|
-
|
|
15
|
-
- MCP
|
|
16
|
-
- MCP security
|
|
17
|
-
- AI security
|
|
18
|
-
- agent security
|
|
19
|
-
- developer tools
|
|
20
|
-
- CI/CD
|
|
21
|
-
- schema drift
|
|
22
|
-
- supply chain security
|
|
23
|
-
- testing
|
|
24
|
-
- GitHub Actions
|
|
25
|
-
|
|
26
|
-
## Primary CTA
|
|
27
|
-
|
|
28
|
-
```bash
|
|
29
|
-
npx @kryptosai/mcp-observatory setup-ci --all --command "npx -y <server-package>"
|
|
30
|
-
```
|
|
31
|
-
|
|
32
|
-
## Directory Targets
|
|
33
|
-
|
|
34
|
-
Prioritize surfaces where users already look for MCP infrastructure:
|
|
35
|
-
|
|
36
|
-
- MCP server directories
|
|
37
|
-
- MCP developer-tool lists
|
|
38
|
-
- AI security lists
|
|
39
|
-
- GitHub Action Marketplace
|
|
40
|
-
- awesome-MCP repositories
|
|
41
|
-
- agent framework docs and community lists
|
|
42
|
-
- npm package discovery through keywords and README copy
|
|
43
|
-
|
|
44
|
-
## Submission Checklist
|
|
45
|
-
|
|
46
|
-
- Link to the README.
|
|
47
|
-
- Link to `CLONED_THIS.md` for immediate adoption.
|
|
48
|
-
- Include the `setup-ci` command.
|
|
49
|
-
- Mention free local OSS use.
|
|
50
|
-
- Mention paid pilots only as production support: hosted history, private readiness review, drift/security reports, certification, support, and fleet visibility.
|
|
51
|
-
- Do not include private telemetry, account names, hostnames, emails, or customer claims.
|
|
52
|
-
|
|
53
|
-
## Marketplace Copy
|
|
54
|
-
|
|
55
|
-
Title:
|
|
56
|
-
|
|
57
|
-
> MCP Observatory CI
|
|
58
|
-
|
|
59
|
-
Description:
|
|
60
|
-
|
|
61
|
-
> Add MCP compatibility, schema drift, and security checks to GitHub Actions before agents depend on your server.
|
|
62
|
-
|
|
63
|
-
Snippet:
|
|
64
|
-
|
|
65
|
-
```yaml
|
|
66
|
-
- uses: KryptosAI/mcp-observatory/action@v0.25.1
|
|
67
|
-
with:
|
|
68
|
-
command: npx -y <server-package>
|
|
69
|
-
deep: true
|
|
70
|
-
security: true
|
|
71
|
-
```
|
|
72
|
-
|
|
73
|
-
## Paid Pilot Demo
|
|
74
|
-
|
|
75
|
-
Use a sanitized sample report when someone asks what the private review produces:
|
|
76
|
-
|
|
77
|
-
```bash
|
|
78
|
-
npx @kryptosai/mcp-observatory enterprise-report --sample --format html --output reports/sample-enterprise-report.html
|
|
79
|
-
```
|
|
@@ -1,83 +0,0 @@
|
|
|
1
|
-
# Enterprise Outreach Playbook
|
|
2
|
-
|
|
3
|
-
Use this playbook after running:
|
|
4
|
-
|
|
5
|
-
```bash
|
|
6
|
-
npm run telemetry:intelligence -- --input <private-telemetry-export.jsonl> --out-dir reports
|
|
7
|
-
```
|
|
8
|
-
|
|
9
|
-
Start from `reports/telemetry-usage-summary.html` to confirm external usage before reading account rankings. Do not treat first-party CI, release workflows, or internal/personal sessions as market traction.
|
|
10
|
-
|
|
11
|
-
Raw telemetry is allowed for internal account intelligence only. Do not include personal emails, hostnames, private URLs, target commands, tokens, proprietary schemas, customer names, or private telemetry exports in public issues, posts, docs, or customer-facing outreach without explicit permission. Keep account-specific rankings in ignored `reports/` outputs or private notes.
|
|
12
|
-
|
|
13
|
-
## Priority Accounts
|
|
14
|
-
|
|
15
|
-
| Priority | Account | Evidence | Motion |
|
|
16
|
-
| ---: | --- | --- | --- |
|
|
17
|
-
| 1 | Private account A | Repeated external sessions, CI usage, private-target signal, or security workflow evidence | Enterprise pilot |
|
|
18
|
-
| 2 | Private account B | Recent usage across multiple sessions or repos | Business pilot / design partner |
|
|
19
|
-
| 3 | Private account C | Small usage cluster with clear owner signal | Business pilot / testimonial ask |
|
|
20
|
-
| 4 | Private account D | Single company or team signal | Team pilot / feedback ask |
|
|
21
|
-
| 5 | GitHub org/user signals | CI or repo-based usage | Team pilot unless company identity is confirmed |
|
|
22
|
-
|
|
23
|
-
## First Email Template
|
|
24
|
-
|
|
25
|
-
Subject: MCP security reporting for production agent workflows
|
|
26
|
-
|
|
27
|
-
Hi,
|
|
28
|
-
|
|
29
|
-
I build MCP Observatory, an open source tool for testing, securing, and monitoring MCP servers before agents depend on them.
|
|
30
|
-
|
|
31
|
-
I am opening a small number of enterprise pilots for teams that want hosted MCP security reports, private-repo CI history, and fleet visibility across agent environments.
|
|
32
|
-
|
|
33
|
-
If your team is running MCP servers in production, I can prepare a short evidence-based report and a pilot proposal focused on:
|
|
34
|
-
|
|
35
|
-
- MCP compatibility
|
|
36
|
-
- private HTTP MCP health checks
|
|
37
|
-
- security findings and schema drift
|
|
38
|
-
- CI history and controlled drift review
|
|
39
|
-
- MCP fleet visibility across teams
|
|
40
|
-
|
|
41
|
-
Would it be useful to compare notes this week?
|
|
42
|
-
|
|
43
|
-
William
|
|
44
|
-
|
|
45
|
-
## Pilot Routing
|
|
46
|
-
|
|
47
|
-
- Repeated sessions + internal/private target: Enterprise Pilot, starts at `$3k/month`.
|
|
48
|
-
- Major platform, AI lab, or very large company: Strategic only, `$250k+/year` anchor.
|
|
49
|
-
- Light but recent company usage: Business Pilot, starts at `$999/month`.
|
|
50
|
-
- GitHub-user-only or hobby-looking usage: Team Pilot, starts at `$299/month`.
|
|
51
|
-
|
|
52
|
-
## Call Agenda
|
|
53
|
-
|
|
54
|
-
1. Confirm whether MCP is already in production or only evaluation.
|
|
55
|
-
2. Identify the owner: platform, security, AI infra, developer productivity, or app team.
|
|
56
|
-
3. Ask which value matters most: CI, security report, dashboard, certification, fleet inventory, or private deployment.
|
|
57
|
-
4. Offer to generate a static enterprise report from their first pilot run.
|
|
58
|
-
5. Quote manually. Do not route large companies to self-serve Team/Business pricing.
|
|
59
|
-
|
|
60
|
-
## Evidence Packet
|
|
61
|
-
|
|
62
|
-
Prepare this before outreach:
|
|
63
|
-
|
|
64
|
-
```bash
|
|
65
|
-
npx @kryptosai/mcp-observatory enterprise-report \
|
|
66
|
-
--account "Account Name" \
|
|
67
|
-
--format html \
|
|
68
|
-
--output reports/account-enterprise-report.html
|
|
69
|
-
```
|
|
70
|
-
|
|
71
|
-
Include only aggregate facts:
|
|
72
|
-
|
|
73
|
-
- company or GitHub organization domain
|
|
74
|
-
- event count
|
|
75
|
-
- unique sessions
|
|
76
|
-
- first seen / last seen
|
|
77
|
-
- commands used
|
|
78
|
-
- targets seen
|
|
79
|
-
- CI/private-network/security signals
|
|
80
|
-
- confidence
|
|
81
|
-
- recommended pilot tier
|
|
82
|
-
|
|
83
|
-
Do not include raw hostnames, personal emails, tokens, or private URLs in external outreach.
|
package/docs/paid-pilot-offer.md
DELETED
|
@@ -1,74 +0,0 @@
|
|
|
1
|
-
# Paid Pilot Offer
|
|
2
|
-
|
|
3
|
-
## Private MCP Readiness Review
|
|
4
|
-
|
|
5
|
-
Offer:
|
|
6
|
-
|
|
7
|
-
> Private MCP readiness review + CI rollout + drift/security report.
|
|
8
|
-
|
|
9
|
-
This is a manual pilot, not a self-serve SaaS promise.
|
|
10
|
-
|
|
11
|
-
## Who It Is For
|
|
12
|
-
|
|
13
|
-
- teams running MCP servers in production or pre-production
|
|
14
|
-
- security/platform teams reviewing agent tool dependencies
|
|
15
|
-
- companies with private MCP repos
|
|
16
|
-
- teams that need proof before agents depend on internal tools
|
|
17
|
-
|
|
18
|
-
## What The Pilot Includes
|
|
19
|
-
|
|
20
|
-
- MCP server inventory across selected repos, configs, or agent environments
|
|
21
|
-
- reproducible test artifacts for each reviewed server
|
|
22
|
-
- private readiness report covering startup, capabilities, schema quality, security findings, and drift risk
|
|
23
|
-
- schema/tool drift baseline using MCP lock files
|
|
24
|
-
- MCP Observatory CI rollout plan for selected servers
|
|
25
|
-
- executive summary with “safe for agent dependency” verdicts
|
|
26
|
-
- prioritized remediation notes and owner-ready next steps
|
|
27
|
-
- optional certification language for servers that pass agreed checks
|
|
28
|
-
|
|
29
|
-
## Starting Prices
|
|
30
|
-
|
|
31
|
-
- Business Pilot: starts at `$999/month`
|
|
32
|
-
- Enterprise Pilot: starts at `$3k/month`
|
|
33
|
-
- Strategic Accounts: custom, `$250k+/year`
|
|
34
|
-
|
|
35
|
-
Do not route major platforms, AI labs, or large enterprises to Team/Business pricing. Use a production/security pilot conversation and ask for the owner or procurement path.
|
|
36
|
-
|
|
37
|
-
## Simple Outreach Copy
|
|
38
|
-
|
|
39
|
-
Subject: Private MCP readiness review
|
|
40
|
-
|
|
41
|
-
Hi,
|
|
42
|
-
|
|
43
|
-
I build MCP Observatory, the CI and security gate for MCP servers before agents depend on them.
|
|
44
|
-
|
|
45
|
-
I am opening a small number of private MCP readiness pilots for teams running MCP in production or pre-production. The pilot includes CI rollout, schema/security review, drift checks, and a private readiness report for your MCP servers.
|
|
46
|
-
|
|
47
|
-
If MCP is becoming part of your agent infrastructure, I can help you answer:
|
|
48
|
-
|
|
49
|
-
- which servers are safe enough for agents to depend on?
|
|
50
|
-
- which tool surfaces changed recently?
|
|
51
|
-
- where are the schema/security risks?
|
|
52
|
-
- what should block a PR before production?
|
|
53
|
-
|
|
54
|
-
Would it be useful to compare notes this week?
|
|
55
|
-
|
|
56
|
-
William
|
|
57
|
-
|
|
58
|
-
## Delivery Shape
|
|
59
|
-
|
|
60
|
-
Start with static reports and CI setup. The first deliverable should look like an internal security/readiness packet, not a SaaS login.
|
|
61
|
-
|
|
62
|
-
## Evidence Standard
|
|
63
|
-
|
|
64
|
-
The public [Safety Methodology](./methodology.md) and [MCP Server Safety Index](./mcp-server-safety-index.md) are the template for private work:
|
|
65
|
-
|
|
66
|
-
- command/config used
|
|
67
|
-
- date and tool version
|
|
68
|
-
- JSON artifact
|
|
69
|
-
- Markdown or HTML report
|
|
70
|
-
- failure class
|
|
71
|
-
- verdict
|
|
72
|
-
- reproduction notes
|
|
73
|
-
|
|
74
|
-
Private pilots can include customer-specific details, but public/customer-facing summaries should use sanitized evidence unless the customer approves otherwise.
|
|
@@ -1,140 +0,0 @@
|
|
|
1
|
-
# MCP Observatory Case Study
|
|
2
|
-
|
|
3
|
-
## One-Line Summary
|
|
4
|
-
|
|
5
|
-
MCP Observatory is CI/security infrastructure for production MCP servers.
|
|
6
|
-
|
|
7
|
-
## Project Narrative
|
|
8
|
-
|
|
9
|
-
MCP Observatory identifies an emerging risk in AI agent infrastructure and turns it into a practical OSS control: CI checks, security reports, drift detection, telemetry intelligence, and certification workflows for production MCP servers.
|
|
10
|
-
|
|
11
|
-
The project is strongest as a signal because it connects product intuition with implementation depth. It starts from a real infrastructure shift, builds a working developer tool around that shift, instruments usage, and creates a credible path from open source adoption to production security workflows.
|
|
12
|
-
|
|
13
|
-
## Problem Discovery
|
|
14
|
-
|
|
15
|
-
MCP servers are becoming dependencies for AI agents. They expose tools, prompts, resources, and data access that agents can call directly. When those servers drift, fail to start, expose broad capabilities, or return ambiguous schemas, the failure can propagate into agent workflows.
|
|
16
|
-
|
|
17
|
-
The control gap is simple: teams need a way to test MCP servers before agents depend on them. They also need artifacts that maintainers, platform engineers, and security reviewers can understand.
|
|
18
|
-
|
|
19
|
-
## Product
|
|
20
|
-
|
|
21
|
-
MCP Observatory provides:
|
|
22
|
-
|
|
23
|
-
- CLI checks for MCP servers
|
|
24
|
-
- MCP server mode so agents can inspect other MCP servers
|
|
25
|
-
- GitHub Action integration
|
|
26
|
-
- PR comments and commit status checks
|
|
27
|
-
- JSON, Markdown, HTML, JUnit, SARIF, and PR-comment reports
|
|
28
|
-
- schema drift detection
|
|
29
|
-
- record/replay/verify workflows
|
|
30
|
-
- health score badges
|
|
31
|
-
- static enterprise reports
|
|
32
|
-
- telemetry intelligence for product and account-level learning
|
|
33
|
-
|
|
34
|
-
## System Design
|
|
35
|
-
|
|
36
|
-
The project is a TypeScript/Node CLI with modular command handlers, MCP adapters, check runners, reporters, artifact schemas, and a GitHub Action wrapper.
|
|
37
|
-
|
|
38
|
-
The system supports local-process and HTTP MCP targets, stores run artifacts, compares runs for regressions, generates reports for humans and CI systems, and can run as an MCP server itself. A Cloudflare Worker handles hosted artifact upload pilots. A separate telemetry Worker stores private aggregate usage events in D1 for product and account intelligence.
|
|
39
|
-
|
|
40
|
-
## Security Model
|
|
41
|
-
|
|
42
|
-
MCP Observatory treats MCP servers as agent-facing infrastructure. The goal is not to claim formal semantic safety. The goal is to make compatibility, drift, and obvious security risk visible before deployment.
|
|
43
|
-
|
|
44
|
-
Current controls include:
|
|
45
|
-
|
|
46
|
-
- lightweight security checks for risky schema patterns
|
|
47
|
-
- schema quality analysis for agent usability
|
|
48
|
-
- SARIF output for security review workflows
|
|
49
|
-
- support for security suppressions when broad tools are intentional
|
|
50
|
-
- private-network rejection for hosted scans
|
|
51
|
-
- privacy disclosure and telemetry opt-out controls
|
|
52
|
-
- sanitized public reporting policy
|
|
53
|
-
|
|
54
|
-
For deeper context, see the [MCP Server Security Field Guide](./mcp-security-field-guide.md).
|
|
55
|
-
|
|
56
|
-
## Telemetry Intelligence
|
|
57
|
-
|
|
58
|
-
Telemetry is used privately to understand product usage and identify account-level signals without publishing raw personal data.
|
|
59
|
-
|
|
60
|
-
As of the latest local export on June 21, 2026:
|
|
61
|
-
|
|
62
|
-
- 11,481 telemetry events
|
|
63
|
-
- 7,571 total sessions
|
|
64
|
-
- 5,389 external sessions after separating internal activity
|
|
65
|
-
- 2,446 external CI sessions
|
|
66
|
-
- 148 attributed company/org sessions
|
|
67
|
-
- 12 attributed company/org candidates
|
|
68
|
-
- latest external activity: June 21, 2026
|
|
69
|
-
|
|
70
|
-
Public claims use aggregate or sanitized data only. Raw emails, hostnames, private URLs, tokens, and response bodies are not published.
|
|
71
|
-
|
|
72
|
-
## Distribution Strategy
|
|
73
|
-
|
|
74
|
-
The distribution wedge is useful CI for other MCP repositories. The certification campaign opens small, helpful PRs that add MCP compatibility/security checks and leave maintainers with a public trust signal.
|
|
75
|
-
|
|
76
|
-
Current public distribution proof includes:
|
|
77
|
-
|
|
78
|
-
- latest release: `v0.25.1`
|
|
79
|
-
- npm package: `@kryptosai/mcp-observatory`
|
|
80
|
-
- GitHub Action: `KryptosAI/mcp-observatory/action@main`
|
|
81
|
-
- npm downloads snapshot: 511 downloads for June 11-20, 2026
|
|
82
|
-
- visible GitHub traffic window: 745 clones and 232 unique cloners
|
|
83
|
-
- visible GitHub page-view window: 12 views and 9 unique visitors
|
|
84
|
-
- public code-search references in MCP indexes, listing mirrors, and external experiment repos
|
|
85
|
-
- official MCP reference PR open and green: [`modelcontextprotocol/servers#4392`](https://github.com/modelcontextprotocol/servers/pull/4392)
|
|
86
|
-
- open certification PRs for Microsoft Playwright MCP, Upstash Context7, ExecuteAutomation Playwright MCP, AntV, BrowserMCP, UI5, Notion, and other MCP projects
|
|
87
|
-
|
|
88
|
-
See [reference evaluations](./reference-evaluations.md) and [public proof](./proof.md).
|
|
89
|
-
|
|
90
|
-
## Commercial Path
|
|
91
|
-
|
|
92
|
-
The free OSS wedge is local testing and public repo CI. Paid value is production/private use:
|
|
93
|
-
|
|
94
|
-
- hosted CI history
|
|
95
|
-
- private repo reporting
|
|
96
|
-
- recurring security reports
|
|
97
|
-
- certification
|
|
98
|
-
- support
|
|
99
|
-
- fleet visibility
|
|
100
|
-
- enterprise review
|
|
101
|
-
|
|
102
|
-
Current pilot anchors:
|
|
103
|
-
|
|
104
|
-
- Team: starts at `$299/month`
|
|
105
|
-
- Business: starts at `$999/month`
|
|
106
|
-
- Enterprise: starts at `$3k/month`
|
|
107
|
-
- Strategic: `$250k+/year`
|
|
108
|
-
|
|
109
|
-
## Professional Signal
|
|
110
|
-
|
|
111
|
-
MCP Observatory demonstrates applied work across:
|
|
112
|
-
|
|
113
|
-
- AI agent infrastructure
|
|
114
|
-
- developer tooling
|
|
115
|
-
- secure tool invocation
|
|
116
|
-
- software supply chain thinking
|
|
117
|
-
- CI/CD integrations
|
|
118
|
-
- telemetry and product analytics
|
|
119
|
-
- open source distribution
|
|
120
|
-
- enterprise packaging
|
|
121
|
-
|
|
122
|
-
It is designed to be evaluated through public work: code, docs, CI integrations, reference evaluations, proof surfaces, and real maintainer PRs.
|
|
123
|
-
|
|
124
|
-
## Future Roadmap
|
|
125
|
-
|
|
126
|
-
Near-term milestones:
|
|
127
|
-
|
|
128
|
-
1. Convert certification PRs into accepted public integrations.
|
|
129
|
-
2. Publish recurring MCP safety reports.
|
|
130
|
-
3. Add stronger policy/provenance language for production MCP adoption.
|
|
131
|
-
4. Improve hosted artifact upload into a simple pilot workflow.
|
|
132
|
-
5. Convert serious production users into paid pilots.
|
|
133
|
-
|
|
134
|
-
Longer-term opportunities:
|
|
135
|
-
|
|
136
|
-
- policy controls for agent tool use
|
|
137
|
-
- provenance for MCP packages and configurations
|
|
138
|
-
- schema locks and controlled drift review
|
|
139
|
-
- runtime monitoring for production agent tool calls
|
|
140
|
-
- fleet inventory across teams, repositories, and hosts
|
|
@@ -1,98 +0,0 @@
|
|
|
1
|
-
# Public Post Drafts
|
|
2
|
-
|
|
3
|
-
Use these as launch posts, GitHub Discussion posts, LinkedIn posts, or short blog drafts. The framing is about MCP safety patterns, not “look at my tool.”
|
|
4
|
-
|
|
5
|
-
## Flagship Post: I Tested Popular MCP Servers. The Failure Pattern Was Not What I Expected.
|
|
6
|
-
|
|
7
|
-
MCP servers are becoming production dependencies for agents, but many of them still ship without the kind of CI gate we expect from normal software dependencies.
|
|
8
|
-
|
|
9
|
-
The main pattern I saw while building the first MCP Server Safety Index was simple: the risky part is rarely that a server exists. The risky part is that agents may depend on a tool surface nobody is testing for startup reliability, schema quality, security posture, or drift.
|
|
10
|
-
|
|
11
|
-
The industry does not need another vibes-based directory. It needs reproducible readiness evidence:
|
|
12
|
-
|
|
13
|
-
- exact command/config
|
|
14
|
-
- date and package version where available
|
|
15
|
-
- JSON artifact
|
|
16
|
-
- Markdown report
|
|
17
|
-
- verdict
|
|
18
|
-
- failure class
|
|
19
|
-
- reproduction notes
|
|
20
|
-
|
|
21
|
-
The checks that matter most:
|
|
22
|
-
|
|
23
|
-
- does the server start cleanly in CI?
|
|
24
|
-
- do tools, prompts, and resources respond as advertised?
|
|
25
|
-
- are tool schemas precise enough for agents to call safely?
|
|
26
|
-
- did a release add, remove, or broaden a tool?
|
|
27
|
-
- are destructive tools clearly identifiable?
|
|
28
|
-
|
|
29
|
-
My takeaway: MCP needs a package-lock moment. Commit the agent-facing contract, then make drift visible before agents depend on it.
|
|
30
|
-
|
|
31
|
-
I am publishing the Safety Methodology and the first MCP Server Safety Index as a small evidence standard, not a leaderboard. If your team is putting MCP into private or production agent workflows, I am doing a small number of private MCP readiness reviews: inventory, CI rollout, schema/tool drift baseline, security findings, and safe-for-agent-dependency verdicts.
|
|
32
|
-
|
|
33
|
-
## Supporting Angle: Browser MCP Servers Need A Different Security Bar
|
|
34
|
-
|
|
35
|
-
Browser automation MCP servers are powerful because agents can navigate pages, click, type, inspect state, and sometimes execute scripts.
|
|
36
|
-
|
|
37
|
-
That is exactly why they need explicit CI and security gates.
|
|
38
|
-
|
|
39
|
-
For browser MCP servers, a useful review should separate:
|
|
40
|
-
|
|
41
|
-
- harmless inventory checks
|
|
42
|
-
- state-mutating browser actions
|
|
43
|
-
- code execution or page-evaluation tools
|
|
44
|
-
- network/navigation controls
|
|
45
|
-
- tool schemas that are too broad for safe agent planning
|
|
46
|
-
|
|
47
|
-
The goal is not to block browser MCP. The goal is to make the trust boundary visible before an agent gets browser-control powers.
|
|
48
|
-
|
|
49
|
-
## Supporting Angle: Filesystem MCP Servers Should Always Test In A Sandbox
|
|
50
|
-
|
|
51
|
-
Filesystem MCP servers are one of the clearest examples of why MCP CI needs context.
|
|
52
|
-
|
|
53
|
-
A server can be useful and still dangerous if the test command points at the wrong directory, if read/write boundaries are unclear, or if a tool schema makes broad path access look harmless.
|
|
54
|
-
|
|
55
|
-
The minimum safety pattern:
|
|
56
|
-
|
|
57
|
-
- run CI against a temporary harmless directory
|
|
58
|
-
- verify tools/resources respond as advertised
|
|
59
|
-
- flag broad filesystem access
|
|
60
|
-
- document which operations are read-only vs write-capable
|
|
61
|
-
- treat changes to path schemas as contract drift
|
|
62
|
-
|
|
63
|
-
Agents need tools. They do not need accidental access to everything.
|
|
64
|
-
|
|
65
|
-
## Supporting Angle: Token-Backed SaaS MCP Servers Need Issue-First Certification
|
|
66
|
-
|
|
67
|
-
Many SaaS, cloud, payments, database, and developer-platform MCP servers cannot be safely checked with a drive-by PR because meaningful startup requires tokens or live services.
|
|
68
|
-
|
|
69
|
-
For those repos, the right move is usually not a workflow PR first. It is an issue or maintainer question:
|
|
70
|
-
|
|
71
|
-
“What is the safest CI startup command for this server?”
|
|
72
|
-
|
|
73
|
-
Once maintainers provide a token-safe target config, the useful checks are:
|
|
74
|
-
|
|
75
|
-
- does startup fail cleanly without credentials?
|
|
76
|
-
- are auth requirements documented?
|
|
77
|
-
- are destructive tools obvious?
|
|
78
|
-
- are schemas narrow enough for agent use?
|
|
79
|
-
- can the repo publish a safe compatibility/security badge?
|
|
80
|
-
|
|
81
|
-
Security adoption works better when it starts by respecting maintainer context.
|
|
82
|
-
|
|
83
|
-
## Supporting Angle: MCP Drift Is An AI Supply Chain Problem
|
|
84
|
-
|
|
85
|
-
When a package dependency changes, teams have lock files, diffs, review, and release notes.
|
|
86
|
-
|
|
87
|
-
When an MCP server changes its tool surface, an agent dependency changed too.
|
|
88
|
-
|
|
89
|
-
That means tool additions, tool removals, schema broadening, new write actions, and prompt/resource changes should be visible in pull requests.
|
|
90
|
-
|
|
91
|
-
The useful primitive is an MCP lock file:
|
|
92
|
-
|
|
93
|
-
```bash
|
|
94
|
-
npx @kryptosai/mcp-observatory lock
|
|
95
|
-
npx @kryptosai/mcp-observatory lock verify
|
|
96
|
-
```
|
|
97
|
-
|
|
98
|
-
The point is not bureaucracy. It is to make the agent-facing contract reviewable before production workflows quietly depend on something new.
|
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
# Publish And Distribution Readiness
|
|
2
|
-
|
|
3
|
-
Use this checklist before a commercialization push. The goal is to increase distribution and start paid conversations without locking the project into a permanent licensing or product shape.
|
|
4
|
-
|
|
5
|
-
## Release Gate
|
|
6
|
-
|
|
7
|
-
Run:
|
|
8
|
-
|
|
9
|
-
```bash
|
|
10
|
-
npm run lint
|
|
11
|
-
npm run typecheck
|
|
12
|
-
npm run build
|
|
13
|
-
npm test
|
|
14
|
-
npm run validate:artifacts
|
|
15
|
-
npm audit --json
|
|
16
|
-
```
|
|
17
|
-
|
|
18
|
-
Confirm:
|
|
19
|
-
|
|
20
|
-
- GitHub Action target scans support `deep`, `security`, and baseline drift failure.
|
|
21
|
-
- `schemas/run-artifact.schema.json` and `schemas/diff-artifact.schema.json` validate current artifacts.
|
|
22
|
-
- HTTP target examples use env references instead of inline tokens.
|
|
23
|
-
- Security findings appear in artifact evidence as structured `findings`.
|
|
24
|
-
- Hosted upload is available through `mcp-observatory cloud upload <artifact>` when `MCP_OBSERVATORY_CLOUD_TOKEN` is set.
|
|
25
|
-
- Hosted HTTP scans require `Authorization: Bearer <HOSTED_SCAN_TOKEN>` and are treated as an authenticated pilot surface.
|
|
26
|
-
|
|
27
|
-
Known audit note:
|
|
28
|
-
|
|
29
|
-
- Release automation runs `semantic-release` ephemerally in GitHub Actions instead of installing it into the repository lockfile. This keeps release-only bundled dependencies out of the default-branch audit surface and out of the packed CLI artifact.
|
|
30
|
-
|
|
31
|
-
## Public Distribution
|
|
32
|
-
|
|
33
|
-
- Merge the health/commercialization PR.
|
|
34
|
-
- Update the GitHub repo homepage to the README or commercial page.
|
|
35
|
-
- Publish npm only after the release gate is green.
|
|
36
|
-
- Refresh MCP directory listings with: “MCP Observatory is the CI and security gate for MCP servers before agents depend on them.”
|
|
37
|
-
- Include “free for local OSS use; paid for hosted reporting, private repo CI, recurring security reports, certification, support, and fleet visibility.”
|
|
38
|
-
- Link production users to `COMMERCIAL.md` and `william@banksey.com`.
|
|
39
|
-
- Submit or refresh listings on Glama, PulseMCP, Smithery, and relevant awesome-MCP lists with the tags: security, developer tools, CI/CD, testing, MCP security, schema drift.
|
|
40
|
-
- Use the certification distribution loop to open helpful PRs against popular MCP server repos and convert accepted PRs into proof points.
|
|
41
|
-
- Link public proof, the safety report, and directory listing copy from launch/outreach materials.
|
|
42
|
-
|
|
43
|
-
## Sales Operating Loop
|
|
44
|
-
|
|
45
|
-
1. Export telemetry rows privately.
|
|
46
|
-
2. Run:
|
|
47
|
-
|
|
48
|
-
```bash
|
|
49
|
-
npx tsx scripts/telemetry-company-intelligence.ts --input telemetry-events.jsonl --out-dir reports
|
|
50
|
-
```
|
|
51
|
-
|
|
52
|
-
3. Review `reports/telemetry-company-intelligence.html`.
|
|
53
|
-
4. Contact the top 25 high-confidence company/org candidates.
|
|
54
|
-
5. For large or strategic domains, quote Strategic only and ask for a security/procurement path.
|
|
55
|
-
6. Use hosted artifact upload or static enterprise reports before building a full SaaS dashboard.
|
|
56
|
-
|
|
57
|
-
## Hosted Upload
|
|
58
|
-
|
|
59
|
-
CLI:
|
|
60
|
-
|
|
61
|
-
```bash
|
|
62
|
-
export MCP_OBSERVATORY_CLOUD_TOKEN="pilot-token"
|
|
63
|
-
export MCP_OBSERVATORY_ORG="customer.com"
|
|
64
|
-
npx @kryptosai/mcp-observatory cloud upload .mcp-observatory/runs/<run>.json
|
|
65
|
-
```
|
|
66
|
-
|
|
67
|
-
Worker:
|
|
68
|
-
|
|
69
|
-
- `POST /api/v1/artifacts` stores a run artifact behind bearer-token auth.
|
|
70
|
-
- `GET /api/v1/artifacts/:org` returns the org artifact index behind the same auth.
|
|
71
|
-
- `POST /api/v1/scan` requires `Authorization: Bearer <HOSTED_SCAN_TOKEN>`.
|
|
72
|
-
- Hosted scans reject localhost/private-network targets; use local CLI for internal MCP servers.
|
|
73
|
-
|
|
74
|
-
## What Not To Do Yet
|
|
75
|
-
|
|
76
|
-
- Do not change the MIT license until paid signal demands it.
|
|
77
|
-
- Do not hard-paywall existing local OSS checks.
|
|
78
|
-
- Do not build a full dashboard before a buyer asks for dashboard workflows.
|
|
79
|
-
- Do not publish raw telemetry emails or individual PII in public materials.
|