We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/visheshd/docmcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/*
Warnings:
- The `embedding` column on the `chunks` table would be dropped and recreated. This will lead to data loss if there is data in the column.
*/
-- CreateEnum
CREATE TYPE "JobType" AS ENUM ('crawl', 'process', 'delete');
-- DropIndex
DROP INDEX "chunks_embedding_idx";
-- AlterTable
ALTER TABLE "chunks" DROP COLUMN "embedding",
ADD COLUMN "embedding" DOUBLE PRECISION[];
-- AlterTable
ALTER TABLE "jobs" ADD COLUMN "max_depth" INTEGER,
ADD COLUMN "metadata" JSONB,
ADD COLUMN "name" TEXT,
ADD COLUMN "tags" TEXT[],
ADD COLUMN "type" "JobType" NOT NULL DEFAULT 'crawl';