Base bytecode capability observations, proxy resolution, gas, DEX, and transfer telemetry.
MCPpedia last refreshed this data
io.github.M2M-Sentinel/m2m-sentinel-sdk is an MCP server that base bytecode capability observations, proxy resolution, gas, DEX, and transfer telemetry. Its tool list has not been published yet over http, sse and stdio, requires no API key, and scores 56/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-m2m-sentinel-m2m-sentinel-sdk": {
"command": "npx",
"args": [
"-y",
"@m2msentinel/sdk"
]
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Base bytecode capability observations, proxy resolution, gas, DEX, and transfer telemetry.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@m2msentinel/sdk' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @m2msentinel/sdk against OSV.dev.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in analytics
MCP Server for GCP environment for interacting with various Observability APIs.
Deterministic, persistent graph server for tracking workflow state, decisions, and blockers.
MCP server for RocketCyber Managed SOC — incidents, alerts, agents, and customer telemetry.
MCP server that enables AI agents to perform comprehensive web audits using Google Lighthouse with 13+ tools for performance, accessibility, SEO, and security analysis.
MCP Security Weekly
Get CVE alerts and security updates for io.github.M2M-Sentinel/m2m-sentinel-sdk and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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.
Connect M2M Sentinel directly to Claude Desktop, Cursor, Windsurf, or any MCP-compliant LLM agent.
npx -y @smithery/cli mcp add M2M-Sentinel/m2m-sentinel-sdk --client claude
claude_desktop_config.json){
"mcpServers": {
"m2m-sentinel": {
"command": "npx",
"args": ["-y", "m2m-sentinel-sdk"],
"env": {
"M2M_SENTINEL_API_KEY": ""
}
}
}
}
https://api.m2msentinel.com/ssehttps://api.m2msentinel.com/messagesimport { 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
})
]
});
npm install m2m-sentinel-sdk
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);
pip install m2m-sentinel
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"])
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");
MIT License. Copyright (c) 2026 M2M Sentinel.