Files
wehub-resource-sync 2cab53bc94
Test Vector Database Adaptors / Test MCP Vector DB Tools (push) Has been cancelled
Tests / Code Quality (Ruff & Mypy) (push) Has been cancelled
Tests / Fast Unit Tests (parallel) (macos-latest, 3.11) (push) Has been cancelled
Tests / Fast Unit Tests (parallel) (macos-latest, 3.12) (push) Has been cancelled
Tests / Tests (push) Has been cancelled
Docker Publish / Build and Push Docker Images (map[description:Skill Seekers CLI - Convert documentation to AI skills dockerfile:Dockerfile name:skill-seekers]) (push) Has been cancelled
Docker Publish / Build and Push Docker Images (map[description:Skill Seekers MCP Server - 25 tools for AI assistants dockerfile:Dockerfile.mcp name:skill-seekers-mcp]) (push) Has been cancelled
Docker Publish / Test Docker Images (push) Has been cancelled
Tests / Fast Unit Tests (parallel) (ubuntu-latest, 3.10) (push) Has been cancelled
Tests / Fast Unit Tests (parallel) (ubuntu-latest, 3.11) (push) Has been cancelled
Tests / Fast Unit Tests (parallel) (ubuntu-latest, 3.12) (push) Has been cancelled
Tests / Serial / Integration / E2E Tests (push) Has been cancelled
Tests / MCP Server Tests (push) Has been cancelled
Test Vector Database Adaptors / Test chroma Adaptor (push) Has been cancelled
Test Vector Database Adaptors / Test faiss Adaptor (push) Has been cancelled
Test Vector Database Adaptors / Test qdrant Adaptor (push) Has been cancelled
Test Vector Database Adaptors / Test weaviate Adaptor (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:46:28 +08:00
..

Skill Seekers — Smithery MCP Registry

Publishing guide for the Skill Seekers MCP server on Smithery.

Status

Publishing

Smithery requires a live, scannable MCP HTTP endpoint for URL-based publishing. Two options:

  1. Go to https://smithery.ai/servers/yusufkaraaslan/skill-seekers/releases
  2. The server already exists — create a new release
  3. For the "Local" tab: follow the prompts to publish as a stdio server
  4. For the "URL" tab: provide a hosted HTTP endpoint URL

Option B: Deploy HTTP endpoint first, then publish via CLI

  1. Deploy the MCP server on Render/Railway/Fly.io:
    # Using existing Dockerfile.mcp
    docker build -f Dockerfile.mcp -t skill-seekers-mcp .
    # Deploy to your hosting provider
    
  2. Publish the live URL:
    npx @smithery/cli@latest auth login
    npx @smithery/cli@latest mcp publish "https://your-deployed-url/mcp" \
      -n yusufkaraaslan/skill-seekers
    

CLI Authentication (already done)

# Install via npx (no global install needed)
npx @smithery/cli@latest auth login
npx @smithery/cli@latest namespace show   # Should show: yusufkaraaslan

After Publishing

Update the server page with metadata:

Display name: Skill Seekers — AI Skill & RAG Toolkit

Description:

Transform 18 source types into AI-ready skills and RAG knowledge. Ingest documentation sites, GitHub repos, PDFs, Jupyter notebooks, videos, Confluence, Notion, Slack/Discord exports, and more. Package for 21+ LLM platforms including Claude, GPT, Gemini, LangChain, LlamaIndex, and vector databases.

Tags: ai, rag, documentation, skills, preprocessing, mcp, knowledge-base, vector-database

User Installation

Once published, users can add the server to their MCP client:

# Via Smithery CLI (adds to Claude Desktop, Cursor, etc.)
smithery mcp add yusufkaraaslan/skill-seekers --client claude

# Or configure manually — users need skill-seekers installed:
pip install skill-seekers[mcp]

Manual MCP Configuration

For clients that use JSON config (Claude Desktop, Claude Code, Cursor):

{
  "mcpServers": {
    "skill-seekers": {
      "command": "python",
      "args": ["-m", "skill_seekers.mcp.server_fastmcp"]
    }
  }
}

Available Tools (40)

Category Tools Description
Config 3 Generate, list, validate scraping configs
Sync 1 Sync config URLs against live docs
Scraping 11 Scrape docs, GitHub, PDF, video, codebase, generic (10 types)
Packaging 4 Package, upload, enhance, install skills
Splitting 2 Split large configs, generate routers
Sources 5 Fetch, submit, manage config sources
Vector DB 4 Export to Weaviate, Chroma, FAISS, Qdrant
Workflows 5 List, get, create, update, delete workflows
Quality 3 Quality checks, estimate scope, resume operations
Agent Install 2 Install agent, extract test examples

Maintenance

  • Update description/tags on major releases
  • No code changes needed — users always get the latest via pip install

Notes

  • Smithery CLI v4.7.0 removed the --transport stdio flag from the docs
  • The CLI publish command only supports URL-based (external) publishing
  • For local/stdio servers, use the web UI at smithery.ai/servers/new
  • The namespace and server entity are already created; only the release needs to succeed