-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.qmd
More file actions
55 lines (44 loc) · 1.58 KB
/
index.qmd
File metadata and controls
55 lines (44 loc) · 1.58 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
---
title: "FAIR MCP Documentation"
format:
html:
toc: true
code-fold: true
metadata:
json-ld: |
{
"@context": "https://schema.org/",
"@type": "WebSite",
"name": "FAIR MCP Documentation",
"description": "FAIR Principles Documentation with Model Context Protocol Support",
"url": "https://ci-compass.github.io/fairmcp",
"about": {
"@type": "DefinedTerm",
"name": "FAIR Principles",
"url": "https://www.go-fair.org/fair-principles/"
}
}
---
## Welcome to FAIR MCP Documentation
This site provides comprehensive documentation about FAIR principles (Findable, Accessible, Interoperable, Reusable) and their implementation through the Model Context Protocol (MCP).
### Test Python Code
```{python}
print("Hello from Python!")
# A simple function to demonstrate code execution
def fair_acronym():
return {
"F": "Findable",
"A": "Accessible",
"I": "Interoperable",
"R": "Reusable"
}
fair = fair_acronym()
for letter, meaning in fair.items():
print(f"{letter}: {meaning}")
```
### What You'll Find Here
- [FAIR Principles](docs/principles/index.qmd): Learn about the FAIR data principles and why they matter
- [Implementation Guides](docs/implementations/index.qmd): Practical guidance for implementing FAIR in your projects
### About This Project
FAIRMCP combines FAIR principles with Model Context Protocol (MCP) to create a comprehensive framework for scientific data management.
According to @wilkinson2016fair, FAIR principles are essential for maximizing the value of research data.