We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/vikram-agentic/linkedin-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
FIXES_APPLIED.md•1.05 kB
# Fixes Applied
## Issues Found in Test
1. ✅ **Database Column Error**: `column l.headline does not exist`
- **Fixed**: Changed `l.headline` to `l.summary as headline` in `getCampaignLeads()` method
- **File**: `src/database-pg.js`
2. ⚠️ **AI Service Methods Not Found**: `aiService.analyzeProduct is not a function`
- **Reason**: New code not deployed to Vercel yet
- **Fix**: Push latest code to GitHub (Vercel auto-deploys from master)
3. ⚠️ **Campaign Analytics Error**: Same database column issue
- **Fixed**: Query updated in same file
## Git Push Command
```bash
cd garbage/linkedin-lead-mcp && git add -A && git commit -m "Fix database column errors and add production campaign automation" && git push origin master
```
## After Deployment
After Vercel deploys (takes 1-2 minutes), test again:
```bash
cd garbage/linkedin-lead-mcp
export API_KEY="b01a98cddade43cac435ef18e6bf0ffe9937dd8fd2da7910b2b9c4b11284d471"
./test-campaign-workflow.sh
```
All endpoints should work once the new code is deployed!