1. Conduid
  2. Developer Tools
  3. Mcpsout Js SDK
MCP server · Developer Tools

Mcpsout Js SDK

Drop-in observability for your MCP server. Tracks tool usage, latency, client intent, and failures - all in real time.

Unclaimed MIT last commit a year ago devtools
52Fair

Scored 4 months ago · breakdown

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

Install
npx mcpsout-js-sdk

This 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

I know everything about Mcpsout Js SDK. Ask me about installation, configuration, usage, or troubleshooting.

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.

Questions

About Mcpsout Js SDK

How do I install Mcpsout Js SDK?

Run npx mcpsout-js-sdk, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Mcpsout Js SDK safe to use with an AI agent?

Its trust score is 52 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Mcpsout Js SDK still maintained?

The last commit was a year ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.