We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ancoleman/qdrant-rag-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index_project.sh•430 B
#!/bin/bash
if [ -z "$1" ]; then
echo "Usage: $0 <project_directory>"
exit 1
fi
PROJECT_DIR="$1"
echo "Indexing project: $PROJECT_DIR"
# Use the MCP server to index the directory
curl -X POST http://localhost:8080/index_directory \
-H "Content-Type: application/json" \
-d "{
\"directory\": \"$PROJECT_DIR\",
\"patterns\": [\"*.py\", \"*.js\", \"*.java\", \"*.json\", \"*.xml\", \"*.yaml\", \"*.yml\"]
}"