npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

sychev-lab-mcp-server

v1.0.8

Published

MCP Server for Sychev Lab - Products, Articles, Tutorials, and Commerce

Readme

Sychev Lab MCP Server

MCP Compatible

Servidor MCP (Model Context Protocol) para Sychev Lab - proporciona acceso a productos, artículos, tutoriales y funciones de comercio electrónico.

🤖 MCP Server — AI Integration

Claude.ai / Web: Añade en Settings → Integrations: https://lab.sychev.xyz/mcp

Claude Desktop / Cursor:

{
	"mcpServers": {
		"sychev-lab": {
			"command": "npx",
			"args": ["-y", "sychev-lab-mcp-server"]
		}
	}
}

Endpoints HTTP:

  • POST/DELETE /mcp — Streamable HTTP (estándar MCP 2025-06-18)
  • GET /.well-known/mcp — Descubrimiento automático

Características

  • Catálogo de Productos: Listar, buscar y obtener detalles de productos STL para impresión 3D
  • Artículos: Acceso a artículos técnicos y de blog
  • Tutoriales: Tutoriales paso a paso con información de dificultad y duración
  • Categorías: Navegación por categorías de productos
  • Usuarios: Registro de nuevos usuarios
  • Checkout: Creación de sesiones de pago con Stripe

Herramientas Disponibles

| Herramienta | Descripción | | ----------------------------- | -------------------------------------------- | | list_products | Lista todos los productos disponibles | | get_product_details | Obtiene información detallada de un producto | | search_products_by_category | Busca productos por categoría o término | | get_categories | Obtiene todas las categorías disponibles | | list_articles | Lista todos los artículos | | get_article | Obtiene el contenido completo de un artículo | | list_tutorials | Lista todos los tutoriales | | get_tutorial | Obtiene el contenido completo de un tutorial | | register_user | Registra un nuevo usuario | | create_stripe_checkout | Crea una sesión de checkout de Stripe |

Instalación

npm install
npm run build

Uso

Modo stdio (para Claude Desktop)

npm start
# o
node dist/index.js

Modo HTTP (Streamable HTTP)

npm run start:http
# o
PORT=3001 node dist/server-http.js

Endpoints disponibles:

  • POST/DELETE /mcp - Streamable HTTP (estandar MCP 2025-06-18)
  • GET /health - Health check
  • GET /.well-known/mcp - Descubrimiento automatico

Modo HTTP Legacy

npm run start:http:legacy
# o
node dist/index.js --http 3000

Variables de Entorno

| Variable | Descripción | Default | | ------------- | ------------------------------- | ------- | | MCP_API_KEY | API key opcional para modo HTTP | - |

Configuración con Claude Desktop

Añade a tu configuración de Claude Desktop (claude_desktop_config.json):

{
	"mcpServers": {
		"sychev-lab": {
			"command": "npx",
			"args": ["-y", "sychev-lab-mcp-server"]
		}
	}
}

O instala globalmente:

npm install -g sychev-lab-mcp-server

Endpoints HTTP

Cuando se ejecuta en modo HTTP (npm run start:http):

  • POST /mcp - Streamable HTTP (estandar MCP 2025-06-18)
  • DELETE /mcp - Cerrar sesion Streamable HTTP
  • GET /health - Health check
  • GET /.well-known/mcp - Descubrimiento automatico

Headers:

Content-Type: application/json
Mcp-Session-Id: <session-id>

Scripts

| Script | Descripción | | -------------------- | -------------------------- | | npm run build | Compila TypeScript | | npm run dev | Compila en modo watch | | npm start | Inicia el servidor (stdio) | | npm run start:http | Inicia el servidor HTTP | | npm run inspector | Ejecuta el inspector MCP | | npm run lint | Ejecuta ESLint | | npm run typecheck | Verifica tipos sin emitir |

Estructura del Proyecto

src/
├── index.ts       # Punto de entrada MCP (modo stdio)
├── server-http.ts # Servidor MCP con Streamable HTTP
├── tools.ts       # Definiciones e implementaciones de herramientas
├── client.ts      # Cliente HTTP para la API de Sychev Lab
└── config.ts      # Configuración del servidor

Licencia

MIT