File size: 16,995 Bytes
7dec74c 3d23b0f 7dec74c 3d23b0f 6b09394 3d23b0f 6b09394 3d23b0f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 |
---
title: Vortex
emoji: π
colorFrom: indigo
colorTo: purple
sdk: docker
app_port: 3000
pinned: false
---
# Vortex
A high-speed, vertical-slice aggregator for competitive programming metrics. Vortex unifies data from LeetCode, Codeforces, CodeChef, AtCoder, and GeeksforGeeks into a single, modular API layer. Built for modern web applications and AI agents via the **Model Context Protocol (MCP)**.
---
## Architecture
Vortex follows a **strict vertical slice architecture**. Each competitive programming platform is an isolated, self-contained plugin that flows through a consistent request pipeline.
### Vortex Flow Diagram
```mermaid
graph TD
A[HTTP Request] --> B[Fastify Router]
B --> C{Route Match}
C -->|/api/v1/leetcode| D1[LeetCode Handler]
C -->|/api/v1/codeforces| D2[Codeforces Handler]
C -->|/api/v1/codechef| D3[CodeChef Handler]
C -->|/api/v1/atcoder| D4[AtCoder Handler]
C -->|/api/v1/gfg| D5[GFG Handler]
C -->|/api/v1/ratings| D6[Aggregator Handler]
D1 --> E1[LeetCode Service]
D2 --> E2[Codeforces Service]
D3 --> E3[CodeChef Service]
D4 --> E4[AtCoder Service]
D5 --> E5[GFG Service]
D6 --> E6[Aggregator Service]
E1 --> F1[LeetCode Provider]
E2 --> F2[Codeforces Provider]
E3 --> F3[CodeChef Provider]
E4 --> F4[AtCoder Provider]
E5 --> F5[GFG Provider]
E6 --> F6[Multi-Platform Provider]
F1 --> G1[LeetCode GraphQL API]
F2 --> G2[Codeforces REST API]
F3 --> G3[CodeChef REST API]
F4 --> G4[AtCoder REST API]
F5 --> G5[GFG Scraper]
G1 --> H[Response]
G2 --> H
G3 --> H
G4 --> H
G5 --> H
H --> I[JSON Response]
style D1 fill:#e3f2fd
style D2 fill:#e3f2fd
style D3 fill:#e3f2fd
style D4 fill:#e3f2fd
style D5 fill:#e3f2fd
style D6 fill:#fff3e0
style E6 fill:#fff3e0
style F6 fill:#fff3e0
```
### Vertical Slice Philosophy
Each platform module (`src/modules/{platform}/`) is a **complete vertical slice**:
| Layer | Responsibility | Dependencies |
|-------|---------------|--------------|
| **routes.ts** | Fastify plugin registration, OpenAPI schemas, endpoint definitions | None (Entry Point) |
| **handlers.ts** | HTTP request/response handling, parameter extraction, validation | Service layer |
| **service.ts** | Business logic, data transformation, error handling | Provider layer |
| **provider.ts** | External API integration, HTTP client configuration | External APIs only |
| **types.ts** | TypeScript interfaces for domain models | None |
| **schemas.ts** | JSON Schema for request/response validation | None |
**Key Constraint:** Each layer can only depend on layers below it. No cross-module dependencies are allowed except through the aggregator service.
---
## Project Structure
```
src/
βββ app.ts # Fastify app configuration & plugin registration
βββ server.ts # HTTP server bootstrap
βββ config/
β βββ env.ts # Environment variable validation
βββ shared/
β βββ middlewares/
β β βββ validate.ts # Global validation middleware
β βββ utils/
β βββ http-client.ts # Axios instance with timeout & retry
β βββ timeout.ts # Request timeout utilities
βββ types/
β βββ api.ts # Common API response types
β βββ fastify.ts # Fastify type augmentation
βββ modules/
βββ leetcode/ # LeetCode vertical slice
βββ codeforces/ # Codeforces vertical slice
βββ codechef/ # CodeChef vertical slice
βββ atcoder/ # AtCoder vertical slice
βββ gfg/ # GeeksforGeeks vertical slice
βββ ratings/ # Cross-platform aggregator
βββ mcp/ # Model Context Protocol server
```
---
## Installation
### Prerequisites
- **Node.js** 18+ (LTS recommended)
- **pnpm** 8+ (install via `npm i -g pnpm`)
### Setup
```bash
# Clone repository
git clone https://github.com/Anujjoshi3105/vortex.git
cd vortex
# Install dependencies
pnpm install
# Configure environment
cp .env.example .env
# Edit .env with your configuration
```
#### `.env.example`
```env
# Server Configuration
PORT=3000
HOST=0.0.0.0
NODE_ENV=development
# Security (optional)
AUTH_SECRET=your_auth_secret_here
```
### Development
```bash
# Start dev server with hot-reload
pnpm dev
```
Server starts at `http://localhost:3000`
API documentation: `http://localhost:3000/docs`
### Production Build
```bash
# Compile TypeScript
pnpm build
# Start production server
pnpm start
```
### MCP Inspector (AI Tool Testing)
```bash
# Launch MCP Inspector UI
pnpm inspect
```
Opens at `http://localhost:6274` for interactive MCP tool testing.
---
## API Reference
### Platform-Specific Endpoints
| Platform | Endpoint | Description |
|----------|----------|-------------|
| **LeetCode** | `GET /api/v1/leetcode/rating?username={user}` | User contest rating & ranking |
| | `GET /api/v1/leetcode/contest-ranking?username={user}` | Contest participation history |
| | `GET /api/v1/leetcode/daily-problem` | Today's daily challenge |
| | `GET /api/v1/leetcode/contests` | Upcoming contests |
| **Codeforces** | `GET /api/v1/codeforces/rating?username={user}` | Current rating & rank |
| | `GET /api/v1/codeforces/contest-history?username={user}` | Rating change graph |
| | `GET /api/v1/codeforces/status?username={user}&from=1&count=10` | Recent submissions |
| | `GET /api/v1/codeforces/solved-problems?username={user}` | Unique solved problems |
| **CodeChef** | `GET /api/v1/codechef/rating?username={user}` | Current rating & stars |
| **AtCoder** | `GET /api/v1/atcoder/rating?username={user}` | Current rating & color |
| **GeeksforGeeks** | `GET /api/v1/gfg/rating?username={user}` | Overall score & rank |
### Aggregator Endpoint
```http
GET /api/v1/ratings?username={user}
```
Returns unified ratings from **all platforms** in a single response:
```json
{
"username": "tourist",
"platforms": {
"leetcode": { "rating": 3200, "rank": "Knight", ... },
"codeforces": { "rating": 3821, "rank": "Legendary Grandmaster", ... },
"codechef": { "rating": 2800, "stars": "7β
", ... },
"atcoder": { "rating": 3817, "color": "red", ... },
"gfg": { "score": 9500, "rank": 1, ... }
}
}
```
### Health Check
```http
GET /health
```
Returns `{ "status": "ok" }` for uptime monitoring.
---
## Model Context Protocol (MCP)
Vortex exposes its functionality as **MCP tools** for AI agents (e.g., Claude Desktop, LangChain agents).
### Connecting to Claude Desktop
Add to your `claude_desktop_config.json`:
```json
{
"mcpServers": {
"vortex-cp": {
"command": "node",
"args": [
"path/to/vortex/dist/server.js"
],
"env": {
"PORT": "3000"
}
}
}
}
```
Restart Claude Desktop.
### MCP Endpoints (HTTP/SSE)
- **SSE Transport**: `GET /mcp/sse`
- **Message Handler**: `POST /mcp/messages?sessionId={id}`
Use the MCP Inspector (`pnpm inspect`) to test tools interactively before integrating with agents.
---
## Contributors Guide
### Adding a New Platform
To maintain **vertical slice integrity**, follow this checklist when adding a new platform (e.g., HackerRank):
#### 1. Create Module Directory
```bash
mkdir -p src/modules/hackerrank
cd src/modules/hackerrank
touch index.ts routes.ts handlers.ts service.ts provider.ts types.ts schemas.ts
```
#### 2. Define Types (`types.ts`)
```typescript
export interface HackerRankRating {
username: string;
rating: number;
rank: string;
solvedCount: number;
}
```
#### 3. Implement Provider (`provider.ts`)
**Responsibility:** External API integration only. No business logic.
```typescript
import axios from 'axios';
import { HackerRankRating } from './types';
export async function fetchUserRating(username: string): Promise<HackerRankRating> {
const { data } = await axios.get(`https://api.hackerrank.com/users/${username}`);
return {
username: data.username,
rating: data.rating,
rank: data.rank,
solvedCount: data.challenges_solved
};
}
```
#### 4. Implement Service (`service.ts`)
**Responsibility:** Business logic, data transformation, error handling.
```typescript
import * as provider from './provider';
import { HackerRankRating } from './types';
export async function getUserRating(username: string): Promise<HackerRankRating> {
if (!username || username.length < 3) {
throw new Error('Invalid username');
}
const data = await provider.fetchUserRating(username);
// Apply business rules (e.g., normalize rank)
return {
...data,
rank: data.rank.toUpperCase()
};
}
```
#### 5. Implement Handlers (`handlers.ts`)
**Responsibility:** HTTP request/response handling, parameter extraction.
```typescript
import { FastifyRequest, FastifyReply } from 'fastify';
import * as service from './service';
interface RatingQuery {
username: string;
}
export async function getUserRatingHandler(
request: FastifyRequest<{ Querystring: RatingQuery }>,
reply: FastifyReply
) {
const { username } = request.query;
try {
const data = await service.getUserRating(username);
reply.send({ success: true, data });
} catch (error) {
reply.status(500).send({ success: false, error: error.message });
}
}
```
#### 6. Define Schemas (`schemas.ts`)
**Responsibility:** OpenAPI/JSON Schema for validation and documentation.
```typescript
export const ratingQuerySchema = {
type: 'object',
required: ['username'],
properties: {
username: { type: 'string', minLength: 3 }
}
};
export const ratingResponseSchema = {
type: 'object',
properties: {
success: { type: 'boolean' },
data: {
type: 'object',
properties: {
username: { type: 'string' },
rating: { type: 'number' },
rank: { type: 'string' },
solvedCount: { type: 'number' }
}
}
}
};
```
#### 7. Create Routes Plugin (`routes.ts`)
**Responsibility:** Fastify plugin registration, OpenAPI tags.
```typescript
import { FastifyPluginAsync } from 'fastify';
import * as handlers from './handlers';
import * as schemas from './schemas';
export const hackerrankPlugin: FastifyPluginAsync = async (fastify) => {
fastify.get('/rating', {
schema: {
tags: ['HackerRank'],
description: 'Get HackerRank user rating',
querystring: schemas.ratingQuerySchema,
response: { 200: schemas.ratingResponseSchema }
}
}, handlers.getUserRatingHandler);
};
export default hackerrankPlugin;
```
#### 8. Barrel Export (`index.ts`)
```typescript
export { hackerrankPlugin } from './routes';
export * from './types';
```
#### 9. Register in App (`src/app.ts`)
```typescript
import { hackerrankPlugin } from './modules/hackerrank';
// Inside buildApp()
await fastify.register(hackerrankPlugin, { prefix: '/api/v1/hackerrank' });
```
#### 10. Update OpenAPI Tags (`src/app.ts`)
```typescript
tags: [
// ... existing tags
{ name: 'HackerRank', description: 'HackerRank platform integration' }
]
```
**Result:** Your new platform is now a self-contained vertical slice with zero coupling to other modules.
---
## System Auditor Review: Future Resilience Checklist
The following improvements are recommended for production-grade deployments at scale.
### Resiliency
| Feature | Status | Priority | Effort |
|---------|--------|----------|--------|
| **Circuit Breaker** | β Not Implemented | High | Medium |
| ββ Prevent cascading failures when external APIs are down | | | |
| ββ Recommended: [opossum](https://www.npmjs.com/package/opossum) | | | |
| **Retry Logic** | β οΈ Partial (Axios defaults) | Medium | Low |
| ββ Exponential backoff for transient failures | | | |
| ββ Recommended: [axios-retry](https://www.npmjs.com/package/axios-retry) | | | |
| **Fallback Responses** | β Not Implemented | Medium | Low |
| ββ Return cached/stale data when APIs are unreachable | | | |
### Performance
| Feature | Status | Priority | Effort |
|---------|--------|----------|--------|
| **Redis Caching** | β Not Implemented | High | Medium |
| ββ Cache platform APIs (TTL: 5-15 minutes) | | | |
| ββ Recommended: [@fastify/redis](https://github.com/fastify/fastify-redis) | | | |
| **Response Compression** | β Not Implemented | Medium | Low |
| ββ Compress JSON responses > 1KB | | | |
| ββ Recommended: [@fastify/compress](https://github.com/fastify/fastify-compress) | | | |
| **Request Timeouts** | β
Implemented | - | - |
| ββ Per-provider timeout configuration exists | | | |
### Security
| Feature | Status | Priority | Effort |
|---------|--------|----------|--------|
| **Rate Limiting** | β Not Implemented | High | Low |
| ββ Prevent abuse (e.g., 100 req/min per IP) | | | |
| ββ Recommended: [@fastify/rate-limit](https://github.com/fastify/fastify-rate-limit) | | | |
| **API Key Middleware** | β οΈ Partial (AUTH_SECRET unused) | Medium | Low |
| ββ Optional authentication for public deployments | | | |
| **Input Sanitization** | β
Implemented | - | - |
| ββ JSON Schema validation active on all endpoints | | | |
| **CORS Restrictions** | β οΈ Too Permissive | Medium | Low |
| ββ Currently allows `origin: '*'` - restrict in production | | | |
### Observability
| Feature | Status | Priority | Effort |
|---------|--------|----------|--------|
| **Structured Logging** | β οΈ Basic (Fastify Logger) | High | Medium |
| ββ Migrate to [Pino](https://github.com/pinojs/pino) with JSON output | | | |
| ββ Add request IDs, trace context | | | |
| **OpenTelemetry** | β Not Implemented | Medium | High |
| ββ Distributed tracing for multi-provider requests | | | |
| ββ Recommended: [@opentelemetry/auto-instrumentations-node](https://www.npmjs.com/package/@opentelemetry/auto-instrumentations-node) | | | |
| **Metrics Endpoint** | β Not Implemented | Medium | Medium |
| ββ Expose Prometheus metrics (`/metrics`) | | | |
| ββ Track: request latency, error rates, cache hit rates | | | |
### Implementation Roadmap
**Phase 1: Resiliency** (Sprint 1-2)
1. Add circuit breaker pattern to all providers
2. Implement Redis caching layer
3. Add rate limiting middleware
**Phase 2: Security** (Sprint 3)
1. Restrict CORS to whitelisted origins
2. Implement API key authentication (optional)
3. Add request/response sanitization audit
**Phase 3: Observability** (Sprint 4-5)
1. Migrate to Pino structured logging
2. Add OpenTelemetry instrumentation
3. Create Prometheus metrics endpoint
4. Build Grafana dashboards
---
## Testing
### Manual Testing
```bash
# Test single platform
curl "http://localhost:3000/api/v1/leetcode/rating?username=tourist"
# Test aggregator
curl "http://localhost:3000/api/v1/ratings?username=tourist"
```
### MCP Tool Testing
```bash
# Launch MCP Inspector
pnpm inspect
# Test in MCP Inspector UI at http://localhost:6274
# Select tool: get_leetcode_user_rating
# Input: { "username": "tourist" }
```
---
## Technology Stack
| Category | Package | Purpose |
|----------|---------|---------|
| **Runtime** | Node.js 18+ | JavaScript runtime |
| **Framework** | Fastify 5.x | High-performance HTTP server |
| **Language** | TypeScript 5.x | Type-safe development |
| **HTTP Client** | Axios 1.x | External API requests |
| **Validation** | Zod 4.x | Runtime type validation |
| **Scraping** | Cheerio 1.x | HTML parsing (GFG) |
| **Documentation** | @fastify/swagger | OpenAPI generation |
| **AI Protocol** | @modelcontextprotocol/sdk | MCP server implementation |
| **Package Manager** | pnpm 8+ | Fast, disk-efficient installs |
---
## Contributing
### Guidelines
1. **Maintain Vertical Slices**: New features must follow the handler β service β provider pattern.
2. **Type Everything**: All functions must have explicit TypeScript types.
3. **Schema Validation**: Add JSON Schema for all new endpoints.
4. **No Cross-Module Imports**: Modules cannot import from other platform modules (use the aggregator pattern).
5. **Update OpenAPI**: Add tags and descriptions for all new routes.
### Pull Request Checklist
- [ ] New vertical slice follows project structure
- [ ] TypeScript types defined in `types.ts`
- [ ] JSON Schema validation in `schemas.ts`
- [ ] OpenAPI documentation updated
- [ ] No cross-module dependencies
- [ ] Tested via Swagger UI and MCP Inspector
---
## License
**ISC** - See [LICENSE](LICENSE) for details.
---
## Project Status
**Current Version:** 1.0.0
**Deployment:** Development (not production-ready - see Auditor Review)
**Maintained By:** [@Anujjoshi3105](https://github.com/Anujjoshi3105)
For issues or feature requests, open a GitHub issue at [Anujjoshi3105/vortex](https://github.com/Anujjoshi3105/vortex).
|