We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/amornpan/py-mcp-qdrant-rag'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
delete_tool_use.sh•452 B
#!/bin/bash
# Script to delete all records related to 1-tool_use.pdf from Qdrant
curl -X POST "http://35.238.226.133:6333/collections/documentation/points/delete" \
-H "Content-Type: application/json" \
-d '{
"filter": {
"must": [
{
"key": "metadata.source",
"match": {
"value": "/Users/grizzlym1/Desktop/docs/1-tool_use.pdf"
}
}
]
}
}'
echo "Done deleting records related to 1-tool_use.pdf"