-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathterms.html
More file actions
91 lines (85 loc) · 2.91 KB
/
Copy pathterms.html
File metadata and controls
91 lines (85 loc) · 2.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="/public/favicon.jpeg" type="image/jpeg" />
<title>Terms of Service — MCP to Skill</title>
<style>
* { box-sizing: border-box; }
body {
font-family: system-ui, -apple-system, sans-serif;
margin: 0;
padding: 0;
}
.wrapper {
max-width: 640px;
margin: 0 auto;
padding: 1.5rem;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
}
header a {
text-decoration: none;
color: inherit;
}
header a:hover { text-decoration: underline; }
h1 { font-size: 1.5rem; margin-bottom: 1rem; }
h2 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; }
p { margin: 0 0 0.75rem; line-height: 1.6; }
small { font-size: 0.85rem; color: #666; }
@media (prefers-color-scheme: dark) {
body { background: #111; color: #eee; }
small { color: #999; }
}
</style>
<script>
window.va = window.va || function () { (window.vaq = window.vaq || []).push(arguments); };
</script>
<script defer src="/_vercel/insights/script.js"></script>
</head>
<body>
<header>
<a href="/">← Back to MCP to Skill</a>
</header>
<div class="wrapper">
<h1>Terms of Service</h1>
<p><small>Last updated: February 2025</small></p>
<h2>Acceptance</h2>
<p>
By using MCP to Skill (the website and CLI tool), you agree to these terms.
</p>
<h2>Service Description</h2>
<p>
MCP to Skill helps you connect MCP-compatible servers (e.g., Notion)
to OpenClaw by generating appropriate commands and, when you choose OAuth,
facilitating the authorization flow. The service is provided “as is.”
</p>
<h2>Use of OAuth</h2>
<p>
When you connect via OAuth, you authorize us to obtain access tokens on your behalf
from the respective provider. You are responsible for complying with each provider’s
terms and acceptable use policies.
</p>
<h2>No Warranty</h2>
<p>
MCP to Skill is offered without warranty of any kind. We do not guarantee uptime,
correctness of generated commands, or compatibility with any MCP server or OpenClaw setup.
</p>
<h2>Limitation of Liability</h2>
<p>
To the extent permitted by law, we are not liable for any damages arising from your
use of the service, including but not limited to data loss or misuse of credentials.
</p>
<h2>Contact</h2>
<p>
For questions about these terms, open an issue at
<a href="https://github.com/filiksyos/mcptoskill">github.com/filiksyos/mcptoskill</a>.
</p>
</div>
</body>
</html>