forked from greynewell/matchspec
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
98 lines (92 loc) · 2.4 KB
/
mkdocs.yml
File metadata and controls
98 lines (92 loc) · 2.4 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
site_name: mcpbr Documentation
site_description: Benchmark runner for evaluating MCP servers against SWE-bench tasks
site_url: https://greynewell.github.io/mcpbr/
repo_url: https://github.com/greynewell/mcpbr
repo_name: greynewell/mcpbr
edit_uri: edit/main/docs/
copyright: Copyright © 2024-2026 mcpbr Contributors
theme:
name: material
custom_dir: docs/overrides
logo: assets/mcpbr-logo.jpg
favicon: assets/mcpbr-logo.jpg
features:
- navigation.sections
- navigation.expand
- navigation.top
- navigation.footer
- search.suggest
- search.highlight
- content.code.copy
- content.code.annotate
- content.tabs.link
palette:
- scheme: default
primary: deep purple
accent: purple
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: deep purple
accent: purple
toggle:
icon: material/brightness-4
name: Switch to light mode
plugins:
- search
- mkdocstrings:
handlers:
python:
paths: [src]
options:
show_source: true
show_root_heading: true
show_root_full_path: false
heading_level: 2
members_order: source
docstring_style: google
- minify:
minify_html: true
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.tabbed:
alternate_style: true
- tables
- toc:
permalink: true
- attr_list
- md_in_html
nav:
- Home: index.md
- Getting Started:
- Installation: installation.md
- Quick Start: index.md
- User Guide:
- Configuration: configuration.md
- CLI Reference: cli.md
- MCP Integration: mcp-integration.md
- Evaluation Results: evaluation-results.md
- Reference:
- Architecture: architecture.md
- API Reference: api/index.md
- Community:
- Contributing: contributing.md
- Troubleshooting: troubleshooting.md
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/greynewell/mcpbr
- icon: fontawesome/brands/python
link: https://pypi.org/project/mcpbr/
- icon: fontawesome/solid/globe
link: https://greynewell.com
name: Grey Newell