Crawler Summary

mcp-typescript-simple answer-first brief

A framework for building TypeScript MCP servers MCP TypeScript Simple A production-ready MCP (Model Context Protocol) server built with TypeScript featuring both basic tools and advanced LLM-powered capabilities with **type-safe provider and model selection** and **dual-mode operation** (STDIO + Streamable HTTP with OAuth). Quick Start Create a production-ready MCP server in under 2 minutes: **What you get:** - ✅ Full-featured MCP server (OAuth, LLM, Docker) - ✅ G Published capability contract available. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 2/24/2026.

Freshness

Last checked 2/22/2026

Best For

Contract is available with explicit auth and schema references.

Not Ideal For

mcp-typescript-simple is not ideal for teams that need stronger public trust telemetry, lower setup complexity, or more explicit contract coverage before production rollout.

Evidence Sources Checked

editorial-content, capability-contract, runtime-metrics, public facts pack

Claim this agent
Agent DossierGitHubSafety: 100/100

mcp-typescript-simple

A framework for building TypeScript MCP servers MCP TypeScript Simple A production-ready MCP (Model Context Protocol) server built with TypeScript featuring both basic tools and advanced LLM-powered capabilities with **type-safe provider and model selection** and **dual-mode operation** (STDIO + Streamable HTTP with OAuth). Quick Start Create a production-ready MCP server in under 2 minutes: **What you get:** - ✅ Full-featured MCP server (OAuth, LLM, Docker) - ✅ G

MCPverified

Public facts

7

Change events

1

Artifacts

0

Freshness

Feb 22, 2026

Verifiededitorial-content1 verified compatibility signal1 GitHub stars

Published capability contract available. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 2/24/2026.

1 GitHub starsSchema refs publishedTrust evidence available

Trust score

Unknown

Compatibility

MCP

Freshness

Feb 22, 2026

Vendor

Jdutton

Artifacts

0

Benchmarks

0

Last release

0.9.1-rc.2

Executive Summary

Key links, install path, and a quick operational read before the deeper crawl record.

Verifiededitorial-content

Summary

Published capability contract available. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 2/24/2026.

Setup snapshot

git clone https://github.com/jdutton/mcp-typescript-simple.git
  1. 1

    Setup complexity is MEDIUM. Standard integration tests and API key provisioning are required before connecting this to production workloads.

  2. 2

    Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.

Evidence Ledger

Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.

Verifiededitorial-content
Vendor (1)

Vendor

Jdutton

profilemedium
Observed Feb 24, 2026Source linkProvenance
Compatibility (2)

Protocol compatibility

MCP

contracthigh
Observed Feb 24, 2026Source linkProvenance

Auth modes

mcp, api_key, oauth

contracthigh
Observed Feb 24, 2026Source linkProvenance
Artifact (1)

Machine-readable schemas

OpenAPI or schema references published

contracthigh
Observed Feb 24, 2026Source linkProvenance
Adoption (1)

Adoption signal

1 GitHub stars

profilemedium
Observed Feb 24, 2026Source linkProvenance
Security (1)

Handshake status

UNKNOWN

trustmedium
Observed unknownSource linkProvenance
Integration (1)

Crawlable docs

6 indexed pages on the official domain

search_documentmedium
Observed Apr 15, 2026Source linkProvenance

Release & Crawl Timeline

Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.

Self-declaredagent-index

Artifacts Archive

Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.

Self-declaredGITHUB MCP

Extracted files

0

Examples

6

Snippets

0

Languages

typescript

Executable Examples

bash

npm create @mcp-typescript-simple@latest my-mcp-server
cd my-mcp-server
cp .env.example .env
npm run dev:stdio

bash

cp .env.example .env
# Edit .env with your API keys

bash

# Install dependencies
npm install

# STDIO Mode (traditional MCP - recommended for development)
npm run dev:stdio

# Streamable HTTP Mode (for web development - no auth)
npm run dev:http

# Streamable HTTP Mode (with OAuth - requires Google credentials)
npm run dev:oauth

# Vercel Serverless Development (test as serverless functions)
npm run dev:vercel

# Build the project
npm run build

# Production STDIO mode
npm start

# Type checking
npm run typecheck

# Linting
npm run lint

# Unit tests with coverage
npm run test:unit

# Integration / CI suite
npm run test:integration

# Test dual-mode functionality
npm run test:dual-mode

# Observability features
npm run otel:start      # Start Grafana OTEL-LGTM stack (requires Docker)
npm run otel:stop       # Stop observability stack
npm run otel:logs       # View observability stack logs

# API Documentation
npm run docs:validate   # Validate OpenAPI specification
npm run docs:preview    # Preview docs locally with Redocly
npm run docs:build      # Build static Redoc HTML
npm run docs:bundle     # Bundle OpenAPI spec to JSON

bash

npm run dev:http
# Open http://localhost:3000/docs in your browser

bash

# Build production Docker image
npm run run:docker:build

# Run Docker container with multi-provider OAuth
npm run run:docker            # Uses .env.oauth (supports Google, GitHub, Microsoft)

# Manual Docker commands
docker build -t mcp-typescript-simple:latest .
docker run --rm -p 3000:3000 --env-file .env.oauth mcp-typescript-simple:latest

bash

curl http://localhost:8080/health

Docs & README

Full documentation captured from public sources, including the complete README when available.

Self-declaredGITHUB MCP

Docs source

GITHUB MCP

Editorial quality

ready

A framework for building TypeScript MCP servers MCP TypeScript Simple A production-ready MCP (Model Context Protocol) server built with TypeScript featuring both basic tools and advanced LLM-powered capabilities with **type-safe provider and model selection** and **dual-mode operation** (STDIO + Streamable HTTP with OAuth). Quick Start Create a production-ready MCP server in under 2 minutes: **What you get:** - ✅ Full-featured MCP server (OAuth, LLM, Docker) - ✅ G

Full README

MCP TypeScript Simple

A production-ready MCP (Model Context Protocol) server built with TypeScript featuring both basic tools and advanced LLM-powered capabilities with type-safe provider and model selection and dual-mode operation (STDIO + Streamable HTTP with OAuth).

Quick Start

Create a production-ready MCP server in under 2 minutes:

npm create @mcp-typescript-simple@latest my-mcp-server
cd my-mcp-server
cp .env.example .env
npm run dev:stdio

What you get:

  • ✅ Full-featured MCP server (OAuth, LLM, Docker)
  • ✅ Graceful degradation (works without API keys)
  • ✅ Production-ready testing (unit + system tests)
  • ✅ Docker deployment (nginx + Redis + multi-replica)
  • ✅ Validation pipeline (vibe-validate)

Adding API keys: Edit .env to add your provider keys (all optional):

  • ANTHROPIC_API_KEY - Claude LLM tools
  • OPENAI_API_KEY - GPT LLM tools
  • GOOGLE_API_KEY - Gemini LLM tools
  • GOOGLE_CLIENT_ID/SECRET - Google OAuth
  • GITHUB_CLIENT_ID/SECRET - GitHub OAuth
  • MICROSOFT_CLIENT_ID/SECRET - Microsoft OAuth

See Getting Started Guide for full documentation.

Key Features

🔒 Type-Safe LLM Integration

  • Provider Selection: Choose between Claude, OpenAI, and Gemini with compile-time validation
  • Model Selection: Select specific models per provider with type safety
  • Intelligent Defaults: Each tool optimized for specific provider/model combinations
  • Runtime Flexibility: Override provider/model per request
  • Backward Compatibility: Existing code continues to work unchanged

🚀 Dual-Mode Operation

  • STDIO Mode: Traditional stdin/stdout for development and Claude Desktop
  • Streamable HTTP Mode: HTTP endpoints with streaming support for web applications
  • OAuth Authentication: Secure Google/GitHub/Microsoft OAuth integration for production
  • Dynamic Client Registration: RFC 7591 compliant OAuth DCR for automatic client registration
  • Development Bypass: Easy auth bypass for local development
  • Claude Code Ready: Full compatibility with Claude Code integration

📊 Production Observability

  • Structured Logging: Pino-based high-performance logging with environment-aware configuration
  • OpenTelemetry Integration: Distributed tracing and metrics collection
  • Session Correlation: Secure UUID-based session tracking for distributed systems
  • Local Development: Grafana OTEL-LGTM stack for observability validation
  • Cross-Platform: Compatible with Express.js, Kubernetes, and Vercel deployments

Current State

This project provides a containerized MCP server with comprehensive CI/CD testing and multi-LLM support:

Basic Tools

  • hello: Greets a person by name
  • echo: Echoes back a provided message
  • current-time: Returns the current timestamp

LLM-Powered Tools (Optional)

  • chat: Interactive AI assistant using Claude Haiku (fast responses)
  • analyze: Deep text analysis using GPT-4 (sentiment, themes, structure)
  • summarize: Text summarization using Gemini Flash (cost-effective)
  • explain: Educational explanations using Claude (clear, adaptive to level)

Note: LLM tools require API keys. The server gracefully runs with basic tools only if no API keys are configured.

Prerequisites

  • Node.js 22+ (Current LTS)
  • Docker (via Colima on macOS)
  • Optional: API keys for LLM providers (Anthropic, OpenAI, Google)

Setup

1. Environment Configuration

Copy the example environment file and add your API keys:

cp .env.example .env
# Edit .env with your API keys

API Key Sources:

  • Anthropic Claude: https://console.anthropic.com/
  • OpenAI: https://platform.openai.com/api-keys
  • Google Gemini: https://ai.google.dev/

Tip: You can use any combination of providers. The server will automatically detect available APIs and enable corresponding tools.

2. Development

Local Development

# Install dependencies
npm install

# STDIO Mode (traditional MCP - recommended for development)
npm run dev:stdio

# Streamable HTTP Mode (for web development - no auth)
npm run dev:http

# Streamable HTTP Mode (with OAuth - requires Google credentials)
npm run dev:oauth

# Vercel Serverless Development (test as serverless functions)
npm run dev:vercel

# Build the project
npm run build

# Production STDIO mode
npm start

# Type checking
npm run typecheck

# Linting
npm run lint

# Unit tests with coverage
npm run test:unit

# Integration / CI suite
npm run test:integration

# Test dual-mode functionality
npm run test:dual-mode

# Observability features
npm run otel:start      # Start Grafana OTEL-LGTM stack (requires Docker)
npm run otel:stop       # Stop observability stack
npm run otel:logs       # View observability stack logs

# API Documentation
npm run docs:validate   # Validate OpenAPI specification
npm run docs:preview    # Preview docs locally with Redocly
npm run docs:build      # Build static Redoc HTML
npm run docs:bundle     # Bundle OpenAPI spec to JSON

API Documentation

This project includes comprehensive OpenAPI 3.1 specification and interactive documentation. When running the server (development or production), access:

  • 📖 /docs - Beautiful read-focused documentation (Redoc)
  • 🧪 /api-docs - Interactive API testing with OAuth support (Swagger UI)
  • 📄 /openapi.yaml - OpenAPI specification (YAML format)
  • 📄 /openapi.json - OpenAPI specification (JSON format)

Example: Start the server and visit http://localhost:3000/docs

npm run dev:http
# Open http://localhost:3000/docs in your browser

The documentation includes:

  • All HTTP endpoints with request/response examples
  • OAuth 2.0 authentication flows with interactive testing
  • JSON-RPC 2.0 MCP protocol endpoints
  • Dynamic Client Registration (RFC 7591/7592)
  • OAuth Discovery metadata (RFC 8414/9728)
  • Admin and monitoring endpoints

Development Guides

Docker Deployment

Single Instance Deployment

# Build production Docker image
npm run run:docker:build

# Run Docker container with multi-provider OAuth
npm run run:docker            # Uses .env.oauth (supports Google, GitHub, Microsoft)

# Manual Docker commands
docker build -t mcp-typescript-simple:latest .
docker run --rm -p 3000:3000 --env-file .env.oauth mcp-typescript-simple:latest

Multi-Node Load Balanced Deployment

For production-grade horizontal scaling with Redis session persistence:

# Start 3 MCP servers + Redis + Nginx load balancer
docker-compose --profile loadbalanced up -d

# Test the load-balanced deployment
curl http://localhost:8080/health

Features:

  • 3 MCP server instances with round-robin load balancing
  • Redis-backed session persistence and recovery
  • Session handoff across instances
  • OpenTelemetry observability integration

📘 Multi-Node Deployment Guide - Complete guide for horizontally scaled deployment with testing instructions

Progressive Production Fidelity Testing

Test with increasing production-like fidelity:

Level 1: Development Mode (TypeScript via tsx)

npm run dev:oauth

Level 2: Docker Container

npm run run:docker:build
npm run run:docker:google

Level 3: Vercel Serverless Automatic deployment via GitHub Actions on PR merge to main.

Project Structure

src/
├── index.ts                    # Main MCP server implementation
├── auth/                       # OAuth authentication system
├── config/                     # Environment and configuration management
├── llm/                        # Multi-LLM provider integration
├── observability/              # Structured logging and OpenTelemetry integration
├── server/                     # HTTP and MCP server implementations
├── session/                    # Session management
├── tools/                      # MCP tool implementations
└── transport/                  # Transport layer abstractions
api/                            # Vercel serverless functions
├── mcp.ts                      # Main MCP protocol endpoint
├── health.ts                   # Health check and status
├── auth.ts                     # OAuth authentication endpoints
└── admin.ts                    # Administration and metrics
test/
├── unit/                       # Unit tests (mirrors src/ structure)
├── integration/                # Integration tests
└── system/                     # End-to-end system tests
tools/                          # Manual development and testing utilities
├── interactive-client.ts       # Interactive MCP client
├── remote-http-client.ts       # Remote HTTP MCP client
├── test-oauth.ts               # OAuth flow testing
└── manual/                     # Manual testing scripts
docs/                           # Deployment and architecture documentation
examples/                       # Usage examples and demonstrations
.github/workflows/              # GitHub Actions CI/CD pipeline
build/                          # Compiled TypeScript output
Dockerfile                      # Container configuration
vercel.json                     # Vercel deployment configuration

Testing

Testing Strategy

This project uses a comprehensive testing approach with multiple layers:

  • Unit Tests: Individual component testing (test/unit/)
  • Integration Tests: Component interaction testing (test/integration/)
  • System Tests: End-to-end deployment validation (test/system/)

System Testing

End-to-end system tests validate the complete deployed application. See test/system/README.md for detailed documentation.

# Run against local development server
npm run test:system:local

# Run against Docker container
npm run test:system:docker

# Run against Vercel preview deployment
npm run test:system:preview

# Run against production deployment
npm run test:system:production

System tests cover:

  • Health & Configuration: Deployment validation and environment detection
  • Authentication: OAuth provider configuration and security
  • MCP Protocol: JSON-RPC compliance and tool discovery
  • Tool Functionality: Basic tools and LLM integration testing

CI/CD Testing (Regression Testing)

Primary command for GitHub Actions and automated testing:

# Complete regression test suite - USE THIS FOR CI/CD
npm run test:ci

# Alternative: Full validation including build
npm run validate

The test:ci command runs:

  • TypeScript compilation
  • Type checking
  • Code linting
  • MCP server startup validation
  • MCP protocol compliance
  • All tool functionality tests
  • Error handling verification
  • Docker build test (if Docker available)

Development Testing

Unit tests live under test/unit/ (mirroring src/** paths, e.g. test/unit/config/environment.test.ts) and feed npm run test:unit; integration suites live under test/integration/ and are exercised by npm run test:integration.

# Individual test commands
npm run test:mcp        # MCP-specific functionality tests
npm run test:interactive # Interactive client testing
npm run typecheck       # TypeScript type validation
npm run lint           # Code quality checks
npm run build          # Compilation test

Manual Testing

Automated MCP Testing

# Run MCP protocol and tool tests
npx tsx tools/manual/test-mcp.ts

Interactive Testing

Local STDIO Client

Launch an interactive client to test tools locally:

# Start interactive MCP client (STDIO mode)
npx tsx tools/interactive-client.ts
Remote HTTP Client

Connect to remote MCP servers using Bearer token authentication:

# Basic usage
npx tsx tools/remote-http-client.ts --url http://localhost:3000/mcp --token your-bearer-token

# With verbose logging
npx tsx tools/remote-http-client.ts --url http://localhost:3000/mcp --token your-token --verbose

# Debug mode with full request/response logging
npx tsx tools/remote-http-client.ts --url http://localhost:3000/mcp --token your-token --debug

# Non-interactive mode (for scripting)
npx tsx tools/remote-http-client.ts --url http://localhost:3000/mcp --token your-token --no-interactive

Remote HTTP Client Features:

  • 🔐 Bearer token authentication (bypasses OAuth flows)
  • 📊 Comprehensive logging with multiple debug levels
  • 🔍 Error analysis with debugging hints and categorization
  • 🛠️ Interactive tool discovery and execution
  • ⏱️ Request/response correlation and timing
  • 🔒 Secure token display (automatic masking)
  • 📡 Full MCP protocol compliance
  • 🌐 Works with any remote HTTP MCP server
Interactive Commands (Both Clients)
  • help - Show available commands and discovered tools
  • list - List all available tools dynamically
  • describe <tool> - Show detailed tool information with parameters
  • <tool-name> <args> - Call any discovered tool directly
  • call <tool> <json-args> - Call tools with JSON arguments
  • raw <json> - Send raw JSON-RPC requests
  • debug [on|off] - Toggle debug logging (HTTP client only)
  • quit - Exit the client

The interactive client dynamically discovers all available MCP tools and provides context-aware help and parameter guidance.

MCP Inspector (Web UI)

For advanced testing with a graphical interface:

# Install MCP Inspector
npm install -g @modelcontextprotocol/inspector

# Launch with web interface
mcp-inspector npx tsx src/index.ts

Developer Testing Tools

For manual testing and development workflows, several utility scripts are available in the tools/ directory:

OAuth Testing

# Test OAuth flow interactively
node tools/test-oauth.js --flow

# Test server health
node tools/test-oauth.js

# Test with existing token
node tools/test-oauth.js --token <your_token>

Vercel Development Testing

# Start official Vercel development server
npm run dev:vercel

# Test MCP protocol compliance
npm run test:mcp

These tools help with:

  • OAuth Flow Validation: Test authentication flows with real providers
  • Local Vercel Testing: Mock Vercel environment for development
  • API Function Testing: Direct testing of serverless functions
  • MCP Protocol Debugging: Low-level MCP endpoint testing

GitHub Actions CI/CD

The project includes a complete CI/CD pipeline in .github/workflows/ci.yml:

  • Node.js 22 Testing: Standardized on current LTS
  • Regression Testing: Runs npm run test:ci on every push/PR
  • Docker Validation: Builds and tests Docker image
  • Deployment Ready: Provides deployment checkpoint

Pipeline triggers:

  • Push to main or develop branches
  • Pull requests to main

MCP Tools Reference

Basic Tools

hello

Greets a person by name.

  • Input: name (string, required)
  • Output: Greeting message

echo

Echoes back the provided message.

  • Input: message (string, required)
  • Output: Echo of the input message

current-time

Returns the current timestamp.

  • Input: None
  • Output: ISO timestamp string

LLM-Powered Tools

Type-Safe Provider & Model Selection: All LLM tools support optional provider and model parameters for fine-grained control over which AI model to use.

chat

Interactive AI assistant with flexible provider and model selection.

  • Input:
    • message (string, required): Your message to the AI
    • system_prompt (string, optional): Custom system instructions
    • temperature (number, optional): Creativity level 0-2 (default: 0.7)
    • provider (enum, optional): 'claude' | 'openai' | 'gemini' (default: 'claude')
    • model (string, optional): Specific model to use (must be valid for provider)
  • Output: AI response
  • Default: Claude Haiku (optimized for speed)
  • Examples:
    • claude-3-haiku-20240307, claude-3-sonnet-20240229
    • gpt-4, gpt-4o, gpt-4o-mini
    • gemini-1.5-flash, gemini-1.5-pro

analyze

Deep text analysis with configurable AI models.

  • Input:
    • text (string, required): Text to analyze
    • analysis_type (enum, optional): 'sentiment', 'themes', 'structure', 'comprehensive', 'summary'
    • focus (string, optional): Specific aspect to focus on
    • provider (enum, optional): 'claude' | 'openai' | 'gemini' (default: 'openai')
    • model (string, optional): Specific model to use
  • Output: Detailed analysis based on type
  • Default: OpenAI GPT-4 (optimized for reasoning)

summarize

Text summarization with cost-effective model options.

  • Input:
    • text (string, required): Text to summarize
    • length (enum, optional): 'brief', 'medium', 'detailed'
    • format (enum, optional): 'paragraph', 'bullets', 'outline'
    • focus (string, optional): Specific aspect to focus on
    • provider (enum, optional): 'claude' | 'openai' | 'gemini' (default: 'gemini')
    • model (string, optional): Specific model to use
  • Output: Formatted summary
  • Default: Gemini Flash (optimized for cost and speed)

explain

Educational explanations with adaptive AI models.

  • Input:
    • topic (string, required): Topic, concept, or code to explain
    • level (enum, optional): 'beginner', 'intermediate', 'advanced'
    • context (string, optional): Additional context or domain
    • include_examples (boolean, optional): Include examples (default: true)
    • provider (enum, optional): 'claude' | 'openai' | 'gemini' (default: 'claude')
    • model (string, optional): Specific model to use
  • Output: Clear explanation adapted to level
  • Default: Claude Sonnet (optimized for clarity and detail)

Architecture

Type-Safe Multi-LLM Strategy

  • Flexible Provider Selection: Choose between Claude, OpenAI, and Gemini at runtime
  • Model-Specific Optimization: Each provider supports multiple models with different capabilities
  • Intelligent Defaults: Each tool has an optimized default provider/model combination
  • Automatic Fallback: Graceful degradation if providers unavailable
  • Type Safety: Compile-time validation prevents invalid provider/model combinations

Available Models by Provider

Claude (Anthropic)

  • claude-3-haiku-20240307: Fast, cost-effective responses
  • claude-3-sonnet-20240229: Balanced performance and capability
  • claude-3-opus-20240229: Highest capability for complex tasks

OpenAI

  • gpt-3.5-turbo: Fast, cost-effective general purpose
  • gpt-4: High capability reasoning and analysis
  • gpt-4-turbo: Enhanced performance with larger context
  • gpt-4o: Optimized multimodal capabilities
  • gpt-4o-mini: Efficient version of GPT-4o

Google Gemini

  • gemini-1.5-flash: Fast, cost-effective processing
  • gemini-1.5-pro: High capability with large context
  • gemini-1.0-pro: Standard performance model

Usage Examples

Basic Usage (Uses Tool Defaults)

{
  "name": "chat",
  "arguments": {
    "message": "Hello, how are you?"
  }
}

Override Provider Only

{
  "name": "analyze",
  "arguments": {
    "text": "Sample text to analyze",
    "provider": "claude"
  }
}

Override Both Provider and Model

{
  "name": "chat",
  "arguments": {
    "message": "Complex question requiring deep reasoning",
    "provider": "openai",
    "model": "gpt-4"
  }
}

Secret Management

  • Tiered Approach: Environment variables → File-based (.env) → Fallback
  • Runtime Detection: Automatically detects available providers
  • Secure Defaults: No hardcoded secrets, graceful failure modes
  • Multi-Provider Support: Works with any combination of available API keys

Deployment Options

Vercel Serverless Deployment

Deploy the MCP server as Vercel serverless functions with full streaming support.

Features

  • Serverless Functions: Auto-scaling serverless endpoints
  • Streamable HTTP: Full MCP streaming protocol support
  • Multi-Provider OAuth: Google, GitHub, Microsoft authentication
  • Built-in Monitoring: Health checks, metrics, and request logging
  • Global CDN: Vercel's edge network for optimal performance

Available Endpoints

  • /api/mcp - MCP protocol endpoint
  • /api/health - Health and status checks
  • /api/auth - OAuth authentication flows
  • /api/admin - Metrics and administration

Documentation

Traditional Deployment

For traditional server deployment, use the standard Node.js build:

npm run build
npm start

Contract & API

Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.

Verifiedcapability-contract

Contract coverage

Status

ready

Auth

mcp, api_key, oauth

Streaming

Yes

Data region

global

Protocol support

MCP: verified

Requires: mcp, lang:typescript, streaming

Forbidden: none

Guardrails

Operational confidence: medium

Contract is available with explicit auth and schema references.
Trust confidence is not low and verification freshness is acceptable.
Protocol support is explicitly confirmed in contract metadata.
Invocation examples
curl -s "https://xpersona.co/api/v1/agents/mcp-jdutton-mcp-typescript-simple/snapshot"
curl -s "https://xpersona.co/api/v1/agents/mcp-jdutton-mcp-typescript-simple/contract"
curl -s "https://xpersona.co/api/v1/agents/mcp-jdutton-mcp-typescript-simple/trust"

Reliability & Benchmarks

Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.

Missingruntime-metrics

Trust signals

Handshake

UNKNOWN

Confidence

unknown

Attempts 30d

unknown

Fallback rate

unknown

Runtime metrics

Observed P50

unknown

Observed P95

unknown

Rate limit

unknown

Estimated cost

unknown

No benchmark suites or observed failure patterns are available.

Media & Demo

Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.

Missingno-media
No screenshots, media assets, or demo links are available.

Related Agents

Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.

Self-declaredprotocol-neighbors
GITLAB_AI_CATALOGgitlab-mcp

Rank

83

A Model Context Protocol (MCP) server for GitLab

Traction

No public download signal

Freshness

Updated 2d ago

MCP
GITLAB_PUBLIC_PROJECTSgitlab-mcp

Rank

80

A Model Context Protocol (MCP) server for GitLab

Traction

No public download signal

Freshness

Updated 2d ago

MCP
GITLAB_AI_CATALOGrmcp-openapi

Rank

74

Expose OpenAPI definition endpoints as MCP tools using the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)

Traction

No public download signal

Freshness

Updated 2d ago

MCP
GITLAB_AI_CATALOGrmcp-actix-web

Rank

72

An actix_web backend for the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)

Traction

No public download signal

Freshness

Updated 2d ago

MCP
Machine Appendix

Contract JSON

{
  "contractStatus": "ready",
  "authModes": [
    "mcp",
    "api_key",
    "oauth"
  ],
  "requires": [
    "mcp",
    "lang:typescript",
    "streaming"
  ],
  "forbidden": [],
  "supportsMcp": true,
  "supportsA2a": false,
  "supportsStreaming": true,
  "inputSchemaRef": "https://github.com/jdutton/mcp-typescript-simple#input",
  "outputSchemaRef": "https://github.com/jdutton/mcp-typescript-simple#output",
  "dataRegion": "global",
  "contractUpdatedAt": "2026-02-24T19:45:40.938Z",
  "sourceUpdatedAt": "2026-02-24T19:45:40.938Z",
  "freshnessSeconds": 4438834
}

Invocation Guide

{
  "preferredApi": {
    "snapshotUrl": "https://xpersona.co/api/v1/agents/mcp-jdutton-mcp-typescript-simple/snapshot",
    "contractUrl": "https://xpersona.co/api/v1/agents/mcp-jdutton-mcp-typescript-simple/contract",
    "trustUrl": "https://xpersona.co/api/v1/agents/mcp-jdutton-mcp-typescript-simple/trust"
  },
  "curlExamples": [
    "curl -s \"https://xpersona.co/api/v1/agents/mcp-jdutton-mcp-typescript-simple/snapshot\"",
    "curl -s \"https://xpersona.co/api/v1/agents/mcp-jdutton-mcp-typescript-simple/contract\"",
    "curl -s \"https://xpersona.co/api/v1/agents/mcp-jdutton-mcp-typescript-simple/trust\""
  ],
  "jsonRequestTemplate": {
    "query": "summarize this repo",
    "constraints": {
      "maxLatencyMs": 2000,
      "protocolPreference": [
        "MCP"
      ]
    }
  },
  "jsonResponseTemplate": {
    "ok": true,
    "result": {
      "summary": "...",
      "confidence": 0.9
    },
    "meta": {
      "source": "GITHUB_MCP",
      "generatedAt": "2026-04-17T04:46:15.682Z"
    }
  },
  "retryPolicy": {
    "maxAttempts": 3,
    "backoffMs": [
      500,
      1500,
      3500
    ],
    "retryableConditions": [
      "HTTP_429",
      "HTTP_503",
      "NETWORK_TIMEOUT"
    ]
  }
}

Trust JSON

{
  "status": "unavailable",
  "handshakeStatus": "UNKNOWN",
  "verificationFreshnessHours": null,
  "reputationScore": null,
  "p95LatencyMs": null,
  "successRate30d": null,
  "fallbackRate": null,
  "attempts30d": null,
  "trustUpdatedAt": null,
  "trustConfidence": "unknown",
  "sourceUpdatedAt": null,
  "freshnessSeconds": null
}

Capability Matrix

{
  "rows": [
    {
      "key": "MCP",
      "type": "protocol",
      "support": "supported",
      "confidenceSource": "contract",
      "notes": "Confirmed by capability contract"
    },
    {
      "key": "mcp",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    },
    {
      "key": "typescript",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    },
    {
      "key": "server",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    }
  ],
  "flattenedTokens": "protocol:MCP|supported|contract capability:mcp|supported|profile capability:typescript|supported|profile capability:server|supported|profile"
}

Facts JSON

[
  {
    "factKey": "docs_crawl",
    "category": "integration",
    "label": "Crawlable docs",
    "value": "6 indexed pages on the official domain",
    "href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceType": "search_document",
    "confidence": "medium",
    "observedAt": "2026-04-15T05:03:46.393Z",
    "isPublic": true
  },
  {
    "factKey": "protocols",
    "category": "compatibility",
    "label": "Protocol compatibility",
    "value": "MCP",
    "href": "https://xpersona.co/api/v1/agents/mcp-jdutton-mcp-typescript-simple/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/mcp-jdutton-mcp-typescript-simple/contract",
    "sourceType": "contract",
    "confidence": "high",
    "observedAt": "2026-02-24T19:45:40.938Z",
    "isPublic": true
  },
  {
    "factKey": "auth_modes",
    "category": "compatibility",
    "label": "Auth modes",
    "value": "mcp, api_key, oauth",
    "href": "https://xpersona.co/api/v1/agents/mcp-jdutton-mcp-typescript-simple/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/mcp-jdutton-mcp-typescript-simple/contract",
    "sourceType": "contract",
    "confidence": "high",
    "observedAt": "2026-02-24T19:45:40.938Z",
    "isPublic": true
  },
  {
    "factKey": "schema_refs",
    "category": "artifact",
    "label": "Machine-readable schemas",
    "value": "OpenAPI or schema references published",
    "href": "https://github.com/jdutton/mcp-typescript-simple#input",
    "sourceUrl": "https://xpersona.co/api/v1/agents/mcp-jdutton-mcp-typescript-simple/contract",
    "sourceType": "contract",
    "confidence": "high",
    "observedAt": "2026-02-24T19:45:40.938Z",
    "isPublic": true
  },
  {
    "factKey": "vendor",
    "category": "vendor",
    "label": "Vendor",
    "value": "Jdutton",
    "href": "https://github.com/jdutton/mcp-typescript-simple",
    "sourceUrl": "https://github.com/jdutton/mcp-typescript-simple",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-02-24T19:43:14.176Z",
    "isPublic": true
  },
  {
    "factKey": "traction",
    "category": "adoption",
    "label": "Adoption signal",
    "value": "1 GitHub stars",
    "href": "https://github.com/jdutton/mcp-typescript-simple",
    "sourceUrl": "https://github.com/jdutton/mcp-typescript-simple",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-02-24T19:43:14.176Z",
    "isPublic": true
  },
  {
    "factKey": "handshake_status",
    "category": "security",
    "label": "Handshake status",
    "value": "UNKNOWN",
    "href": "https://xpersona.co/api/v1/agents/mcp-jdutton-mcp-typescript-simple/trust",
    "sourceUrl": "https://xpersona.co/api/v1/agents/mcp-jdutton-mcp-typescript-simple/trust",
    "sourceType": "trust",
    "confidence": "medium",
    "observedAt": null,
    "isPublic": true
  }
]

Change Events JSON

[
  {
    "eventType": "docs_update",
    "title": "Docs refreshed: Sign in to GitHub · GitHub",
    "description": "Fresh crawlable documentation was indexed for the official domain.",
    "href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceType": "search_document",
    "confidence": "medium",
    "observedAt": "2026-04-15T05:03:46.393Z",
    "isPublic": true
  }
]

Sponsored

Ads related to mcp-typescript-simple and adjacent AI workflows.