We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/AerionDyseti/vector-memory-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
suggested_commands.md•1.24 kB
# Suggested Commands
## Development Commands
### Run the Server
```bash
# Start the MCP server
bun run start
# Development mode (watch for changes)
bun run dev
```
### Testing
```bash
# Run all tests (with model preload - recommended)
bun run test
# Run tests without preload (skips 19 embedding tests, faster)
bun test
# Run a specific test file
bun test tests/memory.test.ts
# Run tests with coverage
bun test --coverage
```
**Note:** `bun run test` uses a wrapper that preloads the embedding model, so all 98 tests run. `bun test` directly skips embedding-specific tests if the model isn't warmed up.
### Type Checking
```bash
# Check TypeScript types (no emit)
bun run typecheck
```
### Install Dependencies
```bash
bun install
```
## Environment Variables
- `VECTOR_MEMORY_DB_PATH` - Custom database path (default: `~/.local/share/vector-memory-mcp/memories.db`)
- `VECTOR_MEMORY_MODEL` - Embedding model (default: `Xenova/all-MiniLM-L6-v2`)
## Git Commands
```bash
git status
git add .
git commit -m "message"
git push origin main
```
## System Utilities (Linux/WSL)
```bash
ls -la # List files
cd <dir> # Change directory
grep -r "pattern" src/ # Search in files
find . -name "*.ts" # Find files
```