Live truck GPS tracking: create freight loads, read position and ETA, confirm delivery.
MCPpedia last refreshed this data
io.github.sudzikcoin/pingpoint is an MCP server that live truck GPS tracking: create freight loads, read position and ETA, confirm delivery. Its tool list has not been published yet over sse, requires no API key, and scores 56/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-sudzikcoin-pingpoint": {
"args": [
"-y",
"@suverselabs/pingpoint-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Real-time logistics tracking for brokers, dispatchers, and drivers.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@suverselabs/pingpoint-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @suverselabs/pingpoint-mcp against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in analytics
MCP Server for GCP environment for interacting with various Observability APIs.
Deterministic, persistent graph server for tracking workflow state, decisions, and blockers.
MCP server that enables AI agents to perform comprehensive web audits using Google Lighthouse with 13+ tools for performance, accessibility, SEO, and security analysis.
MCP server for RocketCyber Managed SOC — incidents, alerts, agents, and customer telemetry.
MCP Security Weekly
Get CVE alerts and security updates for io.github.sudzikcoin/pingpoint and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Real-time logistics tracking for brokers, dispatchers, and drivers.
PingPoint is a MacroPoint-style tracking platform that's simpler and more affordable. It enables freight brokers to monitor driver locations in real-time, share tracking links with customers, and gain insights through analytics.
| Role | Application | Description |
|---|---|---|
| Broker | PingPoint Control | Web console for load management, driver assignment, analytics |
| Driver | PingPoint Driver | Mobile-friendly interface for location updates, stop check-ins |
| Admin | Admin Panel | User management, subscriptions, audit logs |
| Customer | Public Tracking | Read-only tracking links for shippers/receivers |
| Layer | Technology |
|---|---|
| Frontend | React 19, Vite, Tailwind CSS v4, Radix UI |
| Backend | Express.js, TypeScript, Node.js 18+ |
| Database | PostgreSQL with Drizzle ORM |
| Auth | JWT sessions (HTTP-only cookies) |
| Payments | Stripe (credits), Solana Pay (USDC subscriptions) |
| Resend | |
| AI | Anthropic Claude (PDF parsing) |
| Maps | Leaflet, Nominatim (geocoding) |
| Logging | Winston with daily rotation |
| Testing | Vitest, Supertest, Playwright |
# Clone repository
git clone [repository-url]
cd pingpoint
# Install dependencies
npm install
# Set up environment variables
cp .env.example .env
# Edit .env with your values (see Configuration section)
# Run database migrations
npm run db:push
# Start development server
npm run dev
The app will be available at http://localhost:5000.
├── client/ # React frontend
│ ├── src/
│ │ ├── components/ # UI components
│ │ ├── pages/ # Route pages
│ │ ├── context/ # React contexts (theme, auth)
│ │ └── lib/ # Utilities
│ └── index.html
├── server/ # Express backend
│ ├── routes.ts # API endpoints
│ ├── storage.ts # Database operations
│ ├── auth.ts # Authentication
│ ├── middleware/ # Express middleware
│ ├── services/ # Business logic
│ ├── jobs/ # Background jobs (geofencing)
│ ├── billing/ # Stripe & Solana integration
│ └── config/ # Environment & configuration
├── shared/ # Shared code
│ └── schema.ts # Drizzle schema + Zod types
├── docs/ # Docu
... [View full README on GitHub](https://github.com/sudzikcoin/pingpoint#readme)