Skip to main content
Version: V1.0.0

Cursor

Cursor is an AI-powered code editor that supports Windows, macOS, and Linux.

This topic describes how to integrate Cursor with seekdb Agent Skill to get AI-invokable knowledge packs and workflows, and how to integrate Cursor with seekdb MCP Server to build backend applications quickly.

Agent Skills is an AI capability extension format led by Anthropic and released as an open standard. The idea is to package instructions, scripts, and resources into a folder that AI agents can discover and load as "skills" to complete tasks more accurately and efficiently.

seekdb Agent Skills are knowledge packs and workflows that AI can invoke automatically, built on that standard. After you install them in Cursor, when you ask seekdb-related questions, Cursor’s AI will use the skill instructions to look up seekdb docs or run data import/export and similar operations—no need to memorize commands or copy from docs. For more about Agent Skills, see seekdb Agent Skills.

Supported skills

SkillDescriptionExample questions
seekdb (default)Covers official seekdb docs (getting started, development guides, SDK/API, multi-modal data, integration and operations). The AI finds the right doc for your question and answers with examples.How do I deploy seekdb? / How does vector search work in seekdb?
importing-to-seekdbImport data into seekdb collections and optionally vectorize specified columns. You can preview Excel/CSV structure and sample data before importing.Import sample_products.xlsx into seekdb and vectorize the Details column.
querying-from-seekdbFilter by metadata for scalar search; full-text + semantic hybrid search with RRF ranking; export results to CSV or Excel.Recommend 2 phones with rating ≥ 4.3 and AMOLED display.

Install seekdb Agent Skills in Cursor

Cursor loads Agent Skills from the .cursor/skills directory in your project root. Install as follows:

  1. Go to the project root where you want to install the skills.

    cd /path/to/your/project
  2. Install the installer package.

    pip install seekdb-agent-skills
  3. Run the interactive installer.

    seekdb-agent-skills
  4. Select the tool.

    Use ↑/↓ to choose Cursor, then Enter to confirm.

    🚀 seekdb Agent Skills Installer
    ==================================================

    📋 Select tool to install to:
    ? Select one tool (use ↑↓ to navigate, Enter to confirm, Ctrl+C to cancel): (Use arrow keys)
    Claude Code
    OpenClaw
    » Cursor
    Codex
    OpenCode
    GitHub Copilot
    Qoder
    Trae
  5. Confirm the install location.

    📁 Project root: /path/to/your/project
    (Skills will be installed under .cursor/skills)
    ? Install skills to this directory? (Y/n)

    Enter Y to continue or n to exit.

  6. Select skills to install.

    If you only need the AI to reference seekdb docs, press Enter to accept the default. To import/export Excel or CSV from seekdb, also select importing-to-seekdb and querying-from-seekdb. Use ↑/↓ to move, Space to toggle multiple, Enter to confirm.

    📦 Select skills to install:
    ? Select skills (use ↑↓ to navigate, Space to select, Enter to confirm, Ctrl+C to cancel): (Select multiple with Space)
    » ● seekdb
    ○ importing-to-seekdb
    ○ querying-from-seekdb

Use seekdb Agent Skills in Cursor

After installation, open the project root (where skills are installed) in Cursor and ask questions in chat or in the editor. The AI will call the right skill and answer using the docs or skill capabilities.

Example prompts:

  • How do I deploy seekdb on Mac?
  • How does vector search work in seekdb?
  • How do I do hybrid search in seekdb?