Skip to main content
ClaudeWave

Official JavaScript, TypeScript, Python & MCP SDK for M2M Sentinel Base bytecode intelligence

MCP ServersOfficial Registry1 stars0 forksJavaScriptMITUpdated 6d ago
ClaudeWave Trust Score
87/100
Trusted
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Documented (README)
Last scanned: 8/25/2026
Install in Claude Code / Claude Desktop
Method: NPX · @smithery/cli
Claude Code CLI
claude mcp add m2m-sentinel-sdk -- npx -y @smithery/cli
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "m2m-sentinel-sdk": {
      "command": "npx",
      "args": ["-y", "@smithery/cli"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Use cases

MCP Servers overview

# M2M Sentinel SDK & MCP Server

Official multi-language client library, **Model Context Protocol (MCP) server**, and **Coinbase AgentKit ActionProvider** for M2M Sentinel — deterministic EVM bytecode capability intelligence, EIP-1967 proxy resolution, and preflight guards for autonomous agents operating on Base.

[![npm version](https://img.shields.io/npm/v/m2m-sentinel-sdk.svg)](https://www.npmjs.com/package/m2m-sentinel-sdk)
[![PyPI version](https://img.shields.io/pypi/v/m2m-sentinel.svg)](https://pypi.org/project/m2m-sentinel/)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
[![Smithery](https://smithery.ai/badge/m2m-sentinel-sdk)](https://smithery.ai/server/m2m-sentinel-sdk)

---

## ⚡ 1. Model Context Protocol (MCP) Server

Connect M2M Sentinel directly to **Claude Desktop**, **Cursor**, **Windsurf**, or any MCP-compliant LLM agent.

### Option A: 1-Click via Smithery
```bash
npx -y @smithery/cli mcp add M2M-Sentinel/m2m-sentinel-sdk --client claude
```

### Option B: Local Stdio (`claude_desktop_config.json`)
```json
{
  "mcpServers": {
    "m2m-sentinel": {
      "command": "npx",
      "args": ["-y", "m2m-sentinel-sdk"],
      "env": {
        "M2M_SENTINEL_API_KEY": ""
      }
    }
  }
}
```

### Option C: Remote HTTP / Server-Sent Events (SSE)
* **SSE Stream**: `https://api.m2msentinel.com/sse`
* **Messages**: `https://api.m2msentinel.com/messages`

---

## 🤖 2. Coinbase AgentKit Integration

```typescript
import { AgentKit } from "@coinbase/agentkit";
import { m2mSentinelActionProvider } from "m2m-sentinel-sdk";

const agentKit = await AgentKit.from({
  walletProvider,
  actionProviders: [
    m2mSentinelActionProvider({
      apiKey: process.env.M2M_SENTINEL_API_KEY
    })
  ]
});
```

---

## 📦 3. JavaScript / TypeScript Client

```bash
npm install m2m-sentinel-sdk
```

```javascript
const { M2MSentinelClient } = require('m2m-sentinel-sdk');

const client = new M2MSentinelClient();

async function main() {
  const audit = await client.auditContract('0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913');
  console.log('Proxy Detected:', audit.data.proxyDetection.isProxy);
  console.log('Capabilities:', audit.data.bytecodeAnalysis.detectedCapabilities);
}

main().catch(console.error);
```

---

## 🐍 4. Python Client

```bash
pip install m2m-sentinel
```

```python
from m2m_sentinel import M2MSentinelClient

client = M2MSentinelClient()
audit = client.audit_contract("0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913")
print("Proxy detected:", audit["data"]["proxyDetection"]["isProxy"])
print("Capabilities:", audit["data"]["bytecodeAnalysis"]["detectedCapabilities"])
```

---

## 💳 5. Autonomous x402 Micropayments (Headless M2M)

```typescript
import { x402SignerClient } from "m2m-sentinel-sdk";

const client = new x402SignerClient({
  walletSigner: myAgentWallet,
  baseUrl: "https://api.m2msentinel.com"
});

const result = await client.request("/v1/audit/0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913");
```

---

## 📜 License
MIT License. Copyright (c) 2026 M2M Sentinel.

What people ask about m2m-sentinel-sdk

What is M2M-Sentinel/m2m-sentinel-sdk?

+

M2M-Sentinel/m2m-sentinel-sdk is mcp servers for the Claude AI ecosystem. Official JavaScript, TypeScript, Python & MCP SDK for M2M Sentinel Base bytecode intelligence It has 1 GitHub stars and its last recorded update is dated 2026-08-18.

How do I install m2m-sentinel-sdk?

+

You can install m2m-sentinel-sdk by cloning the repository (https://github.com/M2M-Sentinel/m2m-sentinel-sdk) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is M2M-Sentinel/m2m-sentinel-sdk safe to use?

+

Our security agent has analyzed M2M-Sentinel/m2m-sentinel-sdk and assigned a Trust Score of 87/100 (tier: Trusted). See the full breakdown of passed checks and flags on this page.

Who maintains M2M-Sentinel/m2m-sentinel-sdk?

+

M2M-Sentinel/m2m-sentinel-sdk is maintained by M2M-Sentinel. The last recorded GitHub activity is dated 2026-08-18, with 0 open issues.

Are there alternatives to m2m-sentinel-sdk?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy m2m-sentinel-sdk to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: M2M-Sentinel/m2m-sentinel-sdk
[![Featured on ClaudeWave](https://claudewave.com/api/badge/m2m-sentinel-m2m-sentinel-sdk)](https://claudewave.com/repo/m2m-sentinel-m2m-sentinel-sdk)
<a href="https://claudewave.com/repo/m2m-sentinel-m2m-sentinel-sdk"><img src="https://claudewave.com/api/badge/m2m-sentinel-m2m-sentinel-sdk" alt="Featured on ClaudeWave: M2M-Sentinel/m2m-sentinel-sdk" width="320" height="64" /></a>

More MCP Servers

m2m-sentinel-sdk alternatives