Created
December 5, 2025 06:25
-
-
Save kiarashplusplus/06a57973021ffabecdb64f2031dbfbdf to your computer and use it in GitHub Desktop.
WebMCP LLMFeed Archive: 25x.codes | Archived 2025-12-05
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "archived_at": "2025-12-05T06:25:16.112Z", | |
| "archived_by": "kiarashplusplus", | |
| "domain": "25x.codes", | |
| "source_url": "https://25x.codes/.well-known/mcp.llmfeed.json", | |
| "validation_score": 100, | |
| "signature_valid": true, | |
| "feed": { | |
| "feed_type": "mcp", | |
| "metadata": { | |
| "title": "Kiarash Adl Portfolio", | |
| "origin": "https://25x.codes", | |
| "description": "AI-enabled portfolio of Kiarash Adl, AI Systems Architect and Full-Stack Engineer. Query projects, skills, and contact information programmatically.", | |
| "lang": "en", | |
| "version": "2.0.0", | |
| "last_updated": "2025-12-01T00:00:00Z", | |
| "topics": [ | |
| "ai", | |
| "machine-learning", | |
| "full-stack", | |
| "portfolio", | |
| "mit", | |
| "mcp" | |
| ], | |
| "contact": { | |
| "email": "[email protected]", | |
| "github": "https://github.com/kiarashplusplus" | |
| } | |
| }, | |
| "agent_guidance": { | |
| "on_load": "This is Kiarash Adl's AI-enabled portfolio. You can query projects, skills, and execute terminal-style commands to learn about his work. Use the 'submit_contact' tool to send messages directly to Kiarash's inbox.", | |
| "interaction_tone": "professional", | |
| "fallback": "If a tool fails, suggest the user visit https://25x.codes directly.", | |
| "preferred_entrypoints": [ | |
| "https://25x.codes/mcp/invoke" | |
| ], | |
| "invocation_pattern": { | |
| "note": "Use JSON-RPC 2.0 with method 'tools/call'. Tool name goes in params.name, arguments in params.arguments.", | |
| "example": { | |
| "jsonrpc": "2.0", | |
| "method": "tools/call", | |
| "params": { | |
| "name": "submit_contact", | |
| "arguments": { | |
| "name": "Your Name", | |
| "email": "[email protected]", | |
| "message": "Hello!" | |
| } | |
| }, | |
| "id": 1 | |
| }, | |
| "available_methods": [ | |
| "initialize", | |
| "tools/list", | |
| "tools/call", | |
| "ping" | |
| ] | |
| }, | |
| "primary_actions": [ | |
| { | |
| "action": "send_message", | |
| "tool": "submit_contact", | |
| "description": "Send a message to Kiarash - requires name, email, and message" | |
| }, | |
| { | |
| "action": "get_info", | |
| "tool": "run_terminal_command", | |
| "description": "Run commands like about, skills, projects, contact, experience, resume, help" | |
| }, | |
| { | |
| "action": "project_details", | |
| "tool": "get_project_details", | |
| "description": "Get details about specific projects: fiml, hirealigna, aivision" | |
| } | |
| ] | |
| }, | |
| "capabilities": [ | |
| { | |
| "name": "get_project_details", | |
| "type": "endpoint", | |
| "method": "POST", | |
| "url": "https://25x.codes/mcp/invoke", | |
| "protocol": "json-rpc", | |
| "description": "Get detailed information about a specific portfolio project including title, description, tech stack, metrics, and status.", | |
| "inputSchema": { | |
| "type": "object", | |
| "properties": { | |
| "projectId": { | |
| "type": "string", | |
| "description": "The project ID to retrieve (e.g., 'fiml', 'hirealigna', 'aivision')", | |
| "enum": [ | |
| "fiml", | |
| "hirealigna", | |
| "aivision" | |
| ] | |
| }, | |
| "includeStack": { | |
| "type": "boolean", | |
| "description": "Whether to include the technology stack in the response", | |
| "default": true | |
| } | |
| }, | |
| "required": [ | |
| "projectId" | |
| ] | |
| } | |
| }, | |
| { | |
| "name": "run_terminal_command", | |
| "type": "endpoint", | |
| "method": "POST", | |
| "url": "https://25x.codes/mcp/invoke", | |
| "protocol": "json-rpc", | |
| "description": "Execute a terminal command to get information about Kiarash. Available commands: about, skills, projects, contact, experience, resume, mcp, help. The 'resume' command returns a resources array with the PDF download URL.", | |
| "inputSchema": { | |
| "type": "object", | |
| "properties": { | |
| "command": { | |
| "type": "string", | |
| "description": "The terminal command to execute", | |
| "enum": [ | |
| "about", | |
| "skills", | |
| "projects", | |
| "contact", | |
| "experience", | |
| "resume", | |
| "mcp", | |
| "help" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "command" | |
| ] | |
| }, | |
| "outputSchema": { | |
| "type": "object", | |
| "properties": { | |
| "command": { | |
| "type": "string" | |
| }, | |
| "output": { | |
| "type": "string", | |
| "description": "Human-readable text output" | |
| }, | |
| "resources": { | |
| "type": "array", | |
| "description": "Rich media resources (e.g., PDF URLs). Present for 'resume' command.", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "type": { | |
| "type": "string", | |
| "enum": [ | |
| "document", | |
| "image", | |
| "link" | |
| ] | |
| }, | |
| "url": { | |
| "type": "string", | |
| "format": "uri" | |
| }, | |
| "title": { | |
| "type": "string" | |
| }, | |
| "mime_type": { | |
| "type": "string" | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | |
| }, | |
| { | |
| "name": "submit_contact", | |
| "type": "endpoint", | |
| "method": "POST", | |
| "url": "https://25x.codes/mcp/invoke", | |
| "protocol": "json-rpc", | |
| "description": "Submit a contact form message to Kiarash. Validates input and returns a submission URL. Use this to help users send messages or inquiries.", | |
| "inputSchema": { | |
| "type": "object", | |
| "properties": { | |
| "name": { | |
| "type": "string", | |
| "description": "The sender's full name" | |
| }, | |
| "email": { | |
| "type": "string", | |
| "description": "The sender's email address for replies" | |
| }, | |
| "message": { | |
| "type": "string", | |
| "description": "The message content" | |
| }, | |
| "subject": { | |
| "type": "string", | |
| "description": "Optional subject line for the message" | |
| } | |
| }, | |
| "required": [ | |
| "name", | |
| "email", | |
| "message" | |
| ] | |
| }, | |
| "outputSchema": { | |
| "type": "object", | |
| "properties": { | |
| "success": { | |
| "type": "boolean" | |
| }, | |
| "validated": { | |
| "type": "boolean" | |
| }, | |
| "message": { | |
| "type": "string" | |
| }, | |
| "submitUrl": { | |
| "type": "string", | |
| "format": "uri" | |
| }, | |
| "data": { | |
| "type": "object", | |
| "properties": { | |
| "name": { | |
| "type": "string" | |
| }, | |
| "email": { | |
| "type": "string" | |
| }, | |
| "subject": { | |
| "type": "string" | |
| }, | |
| "message": { | |
| "type": "string" | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | |
| ], | |
| "site_capabilities": { | |
| "llm_readable": true, | |
| "agent_invocable": true, | |
| "feeds_signed": true, | |
| "mcp_protocol": "json-rpc", | |
| "rate_limit": "10/min", | |
| "auth": "none", | |
| "cors": true | |
| }, | |
| "data": [ | |
| { | |
| "type": "intent", | |
| "purpose": "Professional portfolio showcasing AI and full-stack engineering expertise", | |
| "recommended_usage": "Use MCP tools to query projects, skills, resume and information about Kiarash Adl programmatically" | |
| } | |
| ], | |
| "trust": { | |
| "signed_blocks": [ | |
| "feed_type", | |
| "metadata", | |
| "agent_guidance", | |
| "capabilities", | |
| "site_capabilities", | |
| "data" | |
| ], | |
| "algorithm": "Ed25519", | |
| "public_key_hint": "https://25x.codes/.well-known/public.pem", | |
| "trust_level": "self-signed", | |
| "scope": "full" | |
| }, | |
| "signature": { | |
| "value": "TlMUXYCOoTscye2w+EgYiHLEVL5OyHd8GwdBru7i57gKRZAwxfDOebg2ef3vS16EMShC9V51YMz9YcV6i0WkCg==", | |
| "created_at": "2025-12-05T06:25:11.720Z" | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment