{ "$schema": "https://modelcontextprotocol.io/schemas/2025-03-26/server-card.json", "name": "Rahul M S Portfolio", "version": "1.0.0", "description": "Portfolio and contact API for Rahul M S — Cybersecurity Researcher & Red Team Specialist. Provides public profile information and a contact form endpoint.", "url": "https://rahulms.qzz.io", "capabilities": { "tools": true, "resources": false, "prompts": false }, "tools": [ { "name": "get_profile", "description": "Retrieve Rahul M S's professional profile including skills, experience, certifications, and project portfolio.", "inputSchema": { "type": "object", "properties": {}, "required": [] } }, { "name": "get_projects", "description": "List open-source security tools and projects created by Rahul M S.", "inputSchema": { "type": "object", "properties": { "featured": { "type": "boolean", "description": "Filter to only featured projects" } }, "required": [] } }, { "name": "contact", "description": "Send a message to Rahul M S for security consulting, penetration testing engagements, or collaboration.", "inputSchema": { "type": "object", "properties": { "name": { "type": "string", "description": "Your name" }, "email": { "type": "string", "format": "email", "description": "Your email address" }, "message": { "type": "string", "description": "Your message" } }, "required": ["name", "email", "message"] } } ] }