Skip to content

Commit 8411b3c

Browse files
saqadriandrew-lastmile
authored andcommitted
restructure
1 parent c66a6d2 commit 8411b3c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+15236
-56
lines changed

docs/css/style.css

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/* Logo sizing */
2+
img.nav-logo {
3+
max-width: 200px;
4+
}
5+
6+
/* Inline code highlighting - Blue theme for mcp-agent */
7+
p code:not(pre code),
8+
table code:not(pre code),
9+
.prose code:not(pre code),
10+
li code:not(pre code),
11+
h1 code:not(pre code),
12+
h2 code:not(pre code),
13+
h3 code:not(pre code),
14+
h4 code:not(pre code),
15+
h5 code:not(pre code),
16+
h6 code:not(pre code),
17+
a code:not(pre code),
18+
span code:not(pre code),
19+
div code:not(pre code) {
20+
color: #3b82f6 !important;
21+
background-color: rgba(59, 130, 246, 0.09);
22+
}

docs/css/version-badge.css

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
.version-badge {
2+
display: inline-block;
3+
font-size: 1em;
4+
padding: 6px 20px;
5+
font-family: "Inter", sans-serif;
6+
color: #3b82f6; /* Blue text */
7+
background: #eff6ff; /* Light blue background */
8+
border: 1px solid rgba(59, 130, 246, 0.3); /* Blue border */
9+
border-radius: 12px;
10+
transition: box-shadow 0.2s, transform 0.15s;
11+
}
12+
13+
.version-badge:hover {
14+
box-shadow: 0 2px 8px 0 rgba(59, 130, 246, 0.2);
15+
transform: translateY(-1px) scale(1.03);
16+
}
17+
18+
.dark .version-badge {
19+
color: #f1f5f9; /* Light text in dark mode */
20+
background: #334155; /* Dark slate background */
21+
border: 1px solid #64748b;
22+
}
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
title: Deployment Auth
3+
sidebarTitle: "Deployment Auth"
4+
description: "Configure authentication for deployed agents (--no-auth, bearer token, OAuth)"
5+
icon: key
6+
---
7+
8+
<Info>
9+
Content on --no-auth flag, bearer token authentication, and OAuth for deployments.
10+
</Info>
11+
12+
## Deployment Authentication Options
13+
14+
- **--no-auth** - Deploy without authentication (development only)
15+
- **Bearer Token** - Simple token-based authentication
16+
- **OAuth** - Full OAuth 2.1 authentication flows
17+
18+
```bash
19+
# Deploy with OAuth
20+
mcp-agent deploy my-agent --auth oauth
21+
22+
# Deploy with bearer token
23+
mcp-agent deploy my-agent --auth bearer
24+
25+
# Deploy without auth (not recommended)
26+
mcp-agent deploy my-agent --no-auth
27+
```
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
title: External MCP Auth
3+
sidebarTitle: "External MCP Auth"
4+
description: "Authentication for external MCP servers"
5+
icon: link
6+
---
7+
8+
<Info>
9+
Link to MCP Server Authentication section.
10+
</Info>
11+
12+
## External MCP Server Authentication
13+
14+
When your agents connect to external MCP servers that require authentication, configure auth in your application.
15+
16+
[See MCP Server Authentication →](/mcp-agent-sdk/mcp/server-authentication)
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
title: Authentication Overview
3+
sidebarTitle: "Overview"
4+
description: "Architecture overview of authentication in mcp-agent cloud"
5+
icon: shield
6+
---
7+
8+
<Info>
9+
Content from oauth_support_design.md architecture overview.
10+
</Info>
11+
12+
## Authentication Architecture
13+
14+
mcp-agent cloud supports multiple authentication patterns for securing deployments.
15+
16+
[See Deployment Auth →](/deployment/authentication/deployment-auth)

0 commit comments

Comments
 (0)