About Mcpsout Js SDK
Mcpsout Js SDK is an MCP server published by aadeexyz in the Developer Tools category: drop-in observability for your MCP server. Tracks tool usage, latency, client intent, and failures - all in real time. It has been installed 0 times through Conduid.
The repository has 7 stars and 0 forks, with the last commit a year ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.
Install
npx mcpsout-js-sdkThis server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.
Ask AI
Ask AI about Mcpsout Js SDK
Powered by Claude · Grounded in docs
Security checks
- ·README presentNot checked yet.
- ·License declaredNot checked yet.
- ·Tests presentNot checked yet.
- ·Dependencies pinnedNot checked yet.
- ·No dynamic code executionNot checked yet.
- !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.
README
🦉 MCPScout JS/TS SDK
Catch your MCP breaking before the internet does.
Zero-to-Logging in just 3 lines of code.
⭐ Features
- Know which tool was called and when
- Measure how long each tool took to run
- Understand why the client called the tool (intent/context)
- See which client (app/user) triggered the call
- Detect failures, timeouts, and weird behavior
- Visualize all of it in a clear, real-time dashboard
🚀 Request Early Access
To ensure the highest quality service during our early growth, MCPScout is currently invite-only. Request your invite by emailing the creator, Aadee, at mcp@aadee.xyz.
📦 Installation
Install the SDK into your existing MCP server:
npm
npm i mcpscout
yarn
yarn add mcpscout
pnpm
pnpm add mcpscout
bun
bun add mcpscout
⚡️ Quick Start
[!IMPORTANT] Make sure you call
scout.track(server)after all your MCP tools are registered, or you’ll miss data.
// import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
// import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
import { MCPScout } from "mcpscout";
const scout = new MCPScout("your-publishable-key");
// Your existing MCP server setup
/*
const mcpServer = new McpServer({
name: "server",
version: "1.0.0",
capabilities: { resources: {}, tools: {} },
});
const transport = new StdioServerTransport();
*/
scout.track(mcpServer);
// await mcpServer.connect(transport);
You're all set! 🎉 Events from your MCP server will show up in your MCPScout dashboard.
📝 License
MIT © 2025 Aadee
Made with ❤️ by Aadee
README mirrored from the source repository 4 months ago. The original is authoritative.