Skip to content

Instantly share code, notes, and snippets.

@kiarashplusplus
kiarashplusplus / webmcp-archive-llmstxt-notion-so.json
Created December 5, 2025 18:41
WebMCP LLMFeed Archive: llmstxt-notion.so | Archived 2025-12-05
{
"archived_at": "2025-12-05T18:41:38.353Z",
"archived_by": "kiarashplusplus",
"domain": "llmstxt-notion.so",
"source_url": "https://notion.so/llms.txt",
"validation_score": 65,
"feed": {
"feed_type": "llmstxt",
"metadata": {
"title": "notion.so",
@kiarashplusplus
kiarashplusplus / webmcp-archive-25x-codes.json
Created December 5, 2025 06:25
WebMCP LLMFeed Archive: 25x.codes | Archived 2025-12-05
{
"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": {
@kiarashplusplus
kiarashplusplus / webmcp-archive-dev-mcp-siemens-com.json
Created December 5, 2025 06:14
WebMCP LLMFeed Archive: dev.mcp.siemens.com | Archived 2025-12-05
{
"archived_at": "2025-12-05T06:14:20.559Z",
"archived_by": "kiarashplusplus",
"domain": "dev.mcp.siemens.com",
"source_url": "https://dev.mcp.siemens.com/.well-known/mcp.llmfeed.json",
"validation_score": 80,
"signature_valid": false,
"feed": {
"feed_type": "mcp",
"metadata": {
<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type">
<meta content="noindex, nofollow" name="robots">
<meta content="noindex, nofollow" name="googlebot">
<script src="https://code.jquery.com/jquery-1.11.3.min.js" type=
"text/javascript">
</script>
@kiarashplusplus
kiarashplusplus / .py
Created January 9, 2016 23:27
AWS Lambda + Mailgun
from __future__ import print_function
import base64, urllib, urllib2
api_key = "api:" + "key-MAILGUN_KEY"
routes_url = 'http://mailgun.net/api/routes.xml'
messages_url = 'http://mailgun.net/api/messages.txt'
def create_routes(pattern, destination):
post_headers = {
'Authorization': 'Basic {0}'.format(base64.b64encode(api_key)),