CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
tenova-labs avatar

SWT3 AI Witness

tenova-labs/swt3-ai
authSTDIOregistry active
Summary

If you're shipping AI agents into production and need cryptographic proof of what they actually did, this gives you 18 witnessing operations mapped to EU AI Act articles, NIST AI RMF functions, and federal controls like CMMC and SR 11-7. It wraps OpenAI, Anthropic, Bedrock, and any OpenAI-compatible endpoint to generate tamper-proof anchors for every inference, model swap, guardrail trigger, and tool call. Prompts and responses never leave your infrastructure. The ledger gets hashes, latency metrics, and compliance factors at configurable clearing levels. You'd reach for this when audit trails matter more than dashboards, when regulatory enforcement is months away, or when you need deterministic proof that the model version, safety filters, and RAG context were exactly what you claimed.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

SWT3 - Sovereign Witness Protocol for AI

Don't audit the agent's thoughts. Audit the agent's actions.

npm PyPI npm downloads PyPI downloads License

The Problem

AI agents are making production decisions: approving loans, triaging patients, managing infrastructure, writing code. In 2026, 65% of firms reported AI agent security incidents. Only 14.4% of agents go live with full security approval. When something goes wrong, there is no tamper-proof audit trail. Logs are mutable. Metrics are averaged. Nobody can prove what the agent actually did.

GPAI transparency obligations are enforceable now. EU AI Act high-risk enforcement begins December 2, 2027. NIST AI RMF, SR 11-7, and CMMC impose similar obligations. 72% of enterprises believe they have AI governance but lack actual control. Most teams have nothing but dashboards and hope.

The Protocol

SWT3 (Sovereign Witness Traceability) is a deterministic witness protocol for AI systems. It intercepts AI actions, hashes the evidence, and anchors cryptographic proof to an immutable ledger. Your code gets the full response. The auditor gets tamper-proof evidence. Raw prompts and responses never leave your infrastructure.

  • Deterministic, not probabilistic. The witness engine uses fixed logic, not AI, to evaluate compliance.
  • Zero data retention. Configurable clearing levels strip sensitive content before it leaves your environment.
  • Framework-mapped. Every anchor maps to EU AI Act articles, NIST AI RMF functions, and federal controls.

Try It (10 Seconds, No Account)

Python

pip install swt3-ai
python -m swt3_ai.demo

TypeScript

npm install @tenova/swt3-ai
npx swt3-demo

No API keys. No account. No network calls. You will see the full witnessing pipeline run locally.

Three Lines to Production

from swt3_ai import Witness
from openai import OpenAI

witness = Witness(endpoint="https://sovereign.tenova.io", api_key="axm_live_...", tenant_id="YOUR_TENANT")
client = witness.wrap(OpenAI())

# Every inference is now witnessed. Your code does not change.
response = client.chat.completions.create(
    model="gpt-4o",
    messages=[{"role": "user", "content": "Summarize this contract"}],
)

Works with OpenAI, Anthropic, AWS Bedrock, Vercel AI SDK, LangChain, LiteLLM (100+ providers), and any OpenAI-compatible endpoint (vLLM, Ollama, Azure OpenAI).

K8s Hardware Attestation

AI compliance doesn't stop at the model layer. Regulators want to know what hardware ran the inference, whether it was authorized, and whether the compute environment changed between audit periods. Today, no platform provides cryptographic proof of which silicon processed which workload. SWT3 does.

Deploy a DaemonSet that discovers accelerator hardware on every node and mints AI-HW.1 attestation anchors. Zero application code changes. One Helm install.

helm install swt3-witness oci://ghcr.io/tenova-labs/charts/swt3-witness \
  --set config.endpoint="https://sovereign.tenova.io" \
  --set config.apiKey="axm_live_..." \
  --set config.tenantId="YOUR_TENANT"

The DaemonSet auto-discovers 6 accelerator types per node:

Discovery PathSiliconMethod
NVIDIA GPUA100, H100, H200, B200, GB200, NVL72nvidia-smi
Google TPUv4, v5e, v5p, v6e, TrilliumTPU_NAME env
AMD MIMI300X, MI325X, MI250rocm-smi
AWS TrainiumTrainium2, Inferentia2neuron-ls
Intel GaudiGaudi3, Gaudi2hl-smi
PCI FallbackAny 3D controller / processing accelerator/sys/bus/pci

Each node reports its silicon vendor, topology, memory, and per-accelerator detail. Non-accelerator nodes produce a valid anchor attesting "no accelerator detected" -- absence of hardware is also auditable evidence. Mixed-silicon clusters (NVIDIA + TPU + AMD in the same cluster) are fully supported.

What this proves to your auditor:

  • Which hardware ran each AI workload (EU AI Act Art. 15(4), NIST 800-53 SI-7)
  • Whether the compute environment changed between assessments (drift detection)
  • That inference didn't silently migrate to unauthorized or unqualified silicon
  • Full hardware provenance from silicon to model, combined with AI-HW.3 (TPM attestation)

The witness context includes silicon_vendor, discovery_method, and accelerators[]. All device identifiers are SHA-256 hashed before leaving the node. Serial numbers, UUIDs, and bus IDs are never transmitted in plaintext.

See the Cross-Silicon K8s Attestation Guide for GKE, EKS, AKS, and on-prem deployment patterns.

What Gets Witnessed

Each inference produces anchors across 108 AI procedures spanning 56 namespaces:

ProcedureDomainWhat It ProvesRegulatory Mapping
AI-INF.1InferencePrompt and response captured (provenance)EU AI Act Art. 12
AI-INF.2InferenceLatency within threshold (detects model swaps)NIST AI RMF MEASURE 2.6
AI-MDL.1ModelDeployed model matches approved hash (integrity)EU AI Act Art. 9
AI-MDL.2ModelModel version identifier recorded (tracking)EU AI Act Art. 72
AI-MDL.5ModelWeight file SHA-256 verified (tamper detection)EU AI Act Art. 15(4)
AI-MDL.6ModelLoRA/PEFT adapter stack attestedEU AI Act Art. 12(2)(b)
AI-MDL.7ModelQuantization method recordedEU AI Act Art. 15(3)
AI-GRD.1GuardrailRequired safety filters were active (enforcement)NIST AI RMF GOVERN 1.5
AI-GRD.2SafetyNo content filter or refusal triggeredEU AI Act Art. 14
AI-GRD.3GatekeeperPre-call guardrail gate enforcedEU AI Act Art. 9(2)
AI-RAG.1RetrievalRAG context chunks and corpus attestedEU AI Act Art. 12(2)(a)
AI-RAG.2RetrievalRetrieval relevance scoring verifiedEU AI Act Art. 10(2)
AI-TOOL.1Tool UseAgent tool/function call recorded (latency, success)NIST AI RMF MANAGE 4.1
AI-ID.1IdentityWitness instance identity attested (agent accountability)EU AI Act Art. 13
AI-ACC.1AccessResource access granted or denied with scopeEU AI Act Art. 9(4)(c)
AI-REV.1RevocationPreviously-issued anchor revoked with reasonEU AI Act Art. 12(3)
AI-SEC.1SecurityAdversarial threat detection performedEU AI Act Art. 15(4)
AI-SEC.2SecurityInput validated and sanitized before inferenceEU AI Act Art. 15(3)
AI-SKILL.1SkillsLoaded skill/tool/plugin manifest attestedEU AI Act Art. 12(2)(b)
AI-SKILL.2MemoryActive memory sources bound to decisionEU AI Act Art. 12(2)(a)
AI-SKILL.3AlignmentRLHF/DPO reward model binding recordedEU AI Act Art. 9(4)(a)
AI-CHAIN.1ChainMulti-agent handoff witnessed with cycle trackingEU AI Act Art. 12(2)(a)
AI-VIO.1ViolationPolicy violation detected during inferenceEU AI Act Art. 9(4)(a)
AI-CHR.1CharterAgent charter/system prompt hash attestedEU AI Act Art. 13
AI-MDL.8ModelModel verified against approved registryEU AI Act Art. 51
AI-HITL.3OversightReviewer identity bound to human reviewEU AI Act Art. 12(3)(d)
AI-SAFE.1SafetyStop mechanism tested, safe state confirmedEU AI Act Art. 14(4)(e)
AI-HW.1HardwareGPU/accelerator inventory attested at startupEU AI Act Art. 15(4)
AI-TRUST.1TrustMutual compliance trust verified between agentsEU AI Act Art. 9(4)(c)
AI-TRUST.2TrustTrust handshake details recordedEU AI Act Art. 12(2)(a)
AI-MARK.1ContentContent provenance marking attestedEU AI Act Art. 50(2)
AI-BASE.1BaselineAgent behavioral baseline monitoredNIST AI RMF MEASURE 2.6
AI-ENV.1EnvironmentRuntime environment fingerprint recordedEU AI Act Art. 15(4)
AI-ENV.2EnvironmentDependency manifest attestedEU AI Act Art. 15(3)
AI-DATA.3DataTraining data lineage attestedEU AI Act Art. 10(2)
AI-DATA.4DataData quality metrics recordedEU AI Act Art. 10(3)
AI-CHAIN.2ChainChain-of-trust credential verifiedEU AI Act Art. 9(4)(c)

Plus 70 additional procedures covering fairness, explainability, inference volume, model drift, human oversight, cybersecurity, supply chain, content marking, agent lifecycle, financial transactions, and cross-border routing. See the full procedure registry.

View an Anchor

A Level 1 anchor for AI-INF.1 (Inference Provenance). This is what reaches the witness ledger. No prompts, no responses, just cryptographic proof.

{
  "procedure_id": "AI-INF.1",
  "factor_a": 1,
  "factor_b": 1,
  "factor_c": 0,
  "clearing_level": 1,
  "anchor_fingerprint": "c059eb5938c0",
  "anchor_epoch": 1774800000,
  "fingerprint_timestamp_ms": 1774800000000,
  "ai_prompt_hash": "315f5bdb76d078c4",
  "ai_response_hash": "a1b2c3d4e5f60718",
  "ai_latency_ms": 842,
  "ai_model_id": "gpt-4o",
  "ai_context": {
    "provider": "openai",
    "guardrails": ["content-filter", "pii-redaction"]
  }
}

The anchor_fingerprint is computed from SHA256("WITNESS:{tenant}:{procedure}:{fa}:{fb}:{fc}:{ts}"). Anyone with the factors can independently verify the math. Trust is a vulnerability. Math is the remedy.

Clearing Levels

The clearing engine controls what leaves your infrastructure. Your code always gets the full response. Clearing only affects what reaches the witness ledger.

LevelNameOn the WireUse Case
0AnalyticsHashes + factors + model + provider + guardrailsInternal analytics
1StandardHashes + factors + model + providerDefault. Production apps
2SensitiveHashes + factors + model onlyHealthcare, legal, PII workloads
3ClassifiedNumeric factors only. Model ID hashed.Defense, air-gapped environments

At Level 1+, raw prompts and responses never leave your infrastructure.

SDKs

LanguagePackageInstall
Pythonswt3-aipip install swt3-ai
TypeScript@tenova/swt3-ainpm install @tenova/swt3-ai
Swiftswt3-aiSwift Package Manager
Rustswt3-aicargo add swt3-ai
C#swt3-aidotnet add package swt3-ai
Rubyswt3-aigem install swt3-ai
Kotlinswt3-aiGradle/Maven
MCP Server@tenova/swt3-mcpnpx @tenova/swt3-mcp

8 SDKs, identical fingerprints. 226 cross-language test vectors validated at build time.

Get Started

  1. Create a free account - instant API key, no credit card
  2. pip install swt3-ai or npm install @tenova/swt3-ai
  3. Wrap your AI client. Every inference is witnessed.

Regulatory Coverage

FrameworkCoverage
EU AI ActArticles 9, 10, 12, 13, 14, 15, 50, 51, 53, 72
NIST AI RMFGOVERN, MAP, MEASURE, MANAGE (10 subcategories)
NIST 800-53SI-7, AU-2, AU-3, AC controls
CMMC v2.0Level 2 practice mappings
SR 11-7Model Risk Management (5 examination areas)
ISO 42001Annex A AI management controls

Repository Structure

packages/swt3-ai/        Python SDK (PyPI: swt3-ai)
packages/swt3-ai-ts/     TypeScript SDK (npm: @tenova/swt3-ai)
packages/swt3-ai-swift/  Swift SDK (Swift Package Index)
packages/swt3-ai-rust/   Rust SDK (crates.io: swt3-ai)
packages/swt3-ai-dotnet/ C# SDK (NuGet: swt3-ai)
packages/swt3-ai-ruby/   Ruby SDK (RubyGems: swt3-ai)
packages/swt3-ai-kotlin/ Kotlin SDK (Maven Central: io.tenova:swt3-ai)
packages/swt3-mcp/       MCP Server (npm: @tenova/swt3-mcp)
packages/swt3-witness/   K8s DaemonSet (GHCR + Helm)
packages/libswt3/        Protocol reference implementation
config/                  Control definitions and framework crosswalks

Compliance & Privacy

Your prompts and responses never leave your infrastructure. The SDK computes SHA-256 hashes locally and transmits only irreversible hashes and numeric factors to the witness ledger. At Clearing Level 3, even the model name is hashed.

  • Data Flow and Privacy Architecture - Visual data boundary for legal and DPO review
  • Clearing & Data Sovereignty Addendum - Shared responsibility, incident response SLA, regulatory applicability
  • Air-Gap Deployment Guide - Zero-egress operation, sneakernet sync, offline verification

Documentation

  • SDK Developer Docs - Quickstart, providers, clearing levels
  • Factor Handoff Protocol - Secure factor custody transfer
  • CMMC Compliance Overlay - Defense industrial base mappings
  • SR 11-7 Compliance Overlay - Model risk management mappings

Contributing

See CONTRIBUTING.md for development setup and guidelines.

License

Apache 2.0. See LICENSE. Patent pending.


If you believe AI systems should prove they followed the rules, give us a star.

SWT3: Sovereign Witness Traceability. We don't run your models. We witness them.

TeNova - Defining the AI Accountability Standard.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

Configuration

SWT3_API_KEYsecret

SWT3 API key (starts with axm_). Omit for zero-config demo mode.

SWT3_TENANT_ID

Your tenant identifier

SWT3_CONFIG_FILE

Path to swt3.yaml config file for policy-as-code

SWT3_CLEARING_LEVEL

Data clearing level: 0=analytics, 1=standard, 2=sensitive, 3=classified

SWT3_AGENT_ID

Agent identity for AI-ID.1 witnessing

SWT3_SIGNING_KEYsecret

HMAC-SHA256 signing key for non-repudiation

Categories
Security & Pentesting
Registryactive
Package@tenova/swt3-mcp
TransportSTDIO
AuthRequired
UpdatedJun 9, 2026
View on GitHub

Related Security & Pentesting MCP Servers

View all →
joepangallo avatar
Mcp Audit Server

joepangallo/mcp-audit-server

Thin MCP and CLI proxy for AI agent and MCP security auditing via a hosted backend
joepangallo avatar
Web Recon Agent

joepangallo/web-recon-agent

Owned-target web security assessment MCP server for authenticated, high-friction apps.
kevthetech143 avatar
Chain Signer

kevthetech143/chain-signer

Security suite for AI agents: flag drains, permit-phishing & risky actions before signing.
kjgueye avatar
Netintel Mcp

kjgueye/netintel-mcp

MCP server for NetIntel — DNS, SSL, WHOIS, email security, OSINT via x402 micropayments
lazymac2x avatar
Mcpwatch

lazymac2x/mcpwatch

Audit MCP servers from inside Claude Code. 10 OWASP checks, A-F grade, live leaderboard.
leonid-rise avatar
Base44-SDK-docs

leonid-rise/base44-sdk-docs

This is not an official Base44 MCP. This MCP server provides instant access to the Base44 SDK documentation to support rapid development and easier troubleshooting. You can search for specific methods, concepts, or keywords to quickly find relevant implementation details. The documentation covers a wide range of topics, including authentication, entity management, best practices, and recommended project structure. The MCP documentation website is available at: https://doc-sdk.base44.app The official Base44 SDK documentation can be found here: https://docs.base44.com/developers/references/sdk/getting-started/overview