-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
65 lines (60 loc) · 1.67 KB
/
mkdocs.yml
File metadata and controls
65 lines (60 loc) · 1.67 KB
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
site_name: MCP Security Analysis
repo_url: https://github.com/eilonc-dev/mcp-security-analysis
repo_name: eilonc-dev/mcp-security-analysis
theme:
name: material
font:
text: Inter
code: JetBrains Mono
palette:
- scheme: default
primary: blue grey
accent: amber
toggle:
icon: material/brightness-auto
name: Switch to dark mode
- scheme: slate
primary: blue grey
accent: amber
toggle:
icon: material/brightness-auto
name: Switch to light mode
features:
- navigation.instant
- header.autohide
- toc.integrate
- navigation.expand
- content.code.copy
- search.suggest
extra_css:
- assets/css/custom.css
nav:
- Overview:
- Home: index.md
- Core Concepts: 02-core-concepts.md
- Protocol Deep Dive:
- Protocol Interactions: 03-protocol-interactions.md
- Data Structures: 04-data-structures.md
- Communication Patterns: 05-communication-patterns.md
- Trust Boundaries: 06-trust-boundaries.md
- Security Analysis:
- Component Considerations: 07-security-considerations-per-component.md
- Threat Modeling (STRIDE): 08-stride-modeling.md
- Attack Scenarios: 09-attack-scenarios.md
- Conclusion:
- Implementation Insights: 10-implementation-insights.md
- Summary & Hotspots: 11-summary-hotspots.md
markdown_extensions:
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.critic
- admonition
- pymdownx.details
- toc:
permalink: true
toc_depth: 3
extra_javascript:
- assets/js/infinite-scroll.js