awesome-cursor-rules-mdc is a generator that creates Cursor MDC rule files from structured library information, using semantic search and language models to gather and organize guidance. Developers use it to produce reusable rules for libraries in Cursor, and the catalogue includes 200 of those rules.
Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
git clone --depth 1 https://github.com/sanjeed5/awesome-cursor-rules-mdcWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/rules/sanjeed5/awesome-cursor-rules-mdc/beautifulsoup4)<a href="https://agentmods.dev/rules/sanjeed5/awesome-cursor-rules-mdc/beautifulsoup4"><img src="https://agentmods.dev/badge/rules/sanjeed5/awesome-cursor-rules-mdc/beautifulsoup4/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/rules/sanjeed5/awesome-cursor-rules-mdc/beautifulsoup4"><img src="https://agentmods.dev/badge/rules/sanjeed5/awesome-cursor-rules-mdc/beautifulsoup4.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.01660 | $0.01660 |
| Opus 5 | $0.00830 | $0.00830 |
| Sonnet 5 | $0.00332 | $0.00332 |
| Haiku 4.5 | $0.00166 | $0.00166 |
Grade A, and why
beautifulsoup4 scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
response = requests.get(url, headers=headers, timeout=10) How it starts
The opening of the file, as written. The whole thing — 180 lines — stays where its author put it; the contents beside it link to each section on GitHub.
beautifulsoup4 Best Practices
Beautiful Soup 4 (BS4) is the definitive library for parsing static HTML/XML. Use it as a robust component within a well-structured scraping pipeline.
1. Installation & Parser Selection
Always install beautifulsoup4 alongside lxml for optimal performance. lxml is significantly faster than Python's built-in html.parser. html5lib is a useful fallback for extremely malformed HTML.
pip install beautifulsoup4 lxml requests html5lib
✅ GOOD: Explicitly specify lxml as the parser.
from bs4 import BeautifulSoup
# Always use lxml for speed
soup = BeautifulSoup(html_content, 'lxml')
❌ BAD: Relying on default html.parser or html5lib unnecessarily.
# Slower, less efficient
soup = BeautifulSoup(html_content, 'html.parser')
# Only use html5lib if lxml fails on malformed HTML
soup = BeautifulSoup(html_content, 'html5lib')
2. Ethical Scraping Fundamentals
Respect robots.txt, implement rate limiting, and use a User-Agent. This is non-negotiable for responsible scraping.
✅ GOOD: Respect robots.txt and use a User-Agent with delays.
import requests
import time
from typing import Dict
def fetch_page_ethically(url: str, headers: Dict[str, str], delay_seconds: float = 2.0) -> str:
"""Fetches HTML content with ethical considerations."""
# In a real app, check robots.txt programmatically
# e.g., using 'robotexclusionrulesparser' library
print(f"Fetching {url}...")
response = requests.get(url, headers=headers, timeout=10)
response.raise_for_status() # Raise HTTPError for bad responses (4xx or 5xx)
time.sleep(delay_seconds) # Rate limiting
return response.text
# Example usage
HEADERS = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 MyScraper/1.0'
}
# html_content = fetch_page_ethically("https://example.com/products", HEADERS)
❌ BAD: Blindly hitting endpoints without identification or delays.
# Will likely get blocked or cause issues
response = requests.get("https://example.com/products")
html_content = response.text
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 180 lines · 0 tokens per session scan A 459a0c35fe86
beautifulsoup4 is a cursor rule published in the GitHub repository sanjeed5/awesome-cursor-rules-mdc (3,570 stars, last pushed 3mo ago), licensed CC0-1.0. It adds 1,660 tokens to every session, about $0.0083 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other cursor rules, from other repositories
python_tests
We use the unit tests to cover internal behavior that can work without the web / backend counterpart. We aim for 95%+ unit test coverage of our Python code in lib/streamlit.
py-fast-api
Cursor rules for Python FastAPI backend development and best practices.
python
Python best practices and patterns for modern software development with Flask and SQLite.
python--typescript-guide-cursorrules-prompt-file
Cursor rules for Python development with TypeScript guide integration.
django-python
Rules for writing Python services at PostHog (Python servers powered by the Django framework).
10-backend-python
Backend Python development rules for FastAPI, SQLAlchemy 2.x, async patterns, and Alembic migrations.