@breadstone/archipel-mcp 0.0.5 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/data/packages/platform-authentication/api/Class.AppleStrategy.md +1 -1
- package/data/packages/platform-authentication/api/Class.GithubStrategy.md +1 -1
- package/data/packages/platform-authentication/api/Class.GoogleStrategy.md +1 -1
- package/data/packages/platform-authentication/api/Class.MicrosoftStrategy.md +1 -1
- package/data/packages/platform-authentication/api/Variable.APPLE_AUTH_CONFIG_ENTRIES.md +1 -1
- package/data/packages/platform-authentication/api/Variable.AUTH_APPLE_CALLBACK_URL.md +1 -1
- package/data/packages/platform-authentication/api/Variable.AUTH_APPLE_CLIENT_ID.md +1 -1
- package/data/packages/platform-authentication/api/Variable.AUTH_APPLE_KEY_ID.md +1 -1
- package/data/packages/platform-authentication/api/Variable.AUTH_APPLE_PRIVATE_KEY.md +1 -1
- package/data/packages/platform-authentication/api/Variable.AUTH_APPLE_SCOPE.md +15 -0
- package/data/packages/platform-authentication/api/Variable.AUTH_APPLE_TEAM_ID.md +1 -1
- package/data/packages/platform-authentication/api/Variable.AUTH_GITHUB_CALLBACK_URL.md +1 -1
- package/data/packages/platform-authentication/api/Variable.AUTH_GITHUB_CLIENT_ID.md +1 -1
- package/data/packages/platform-authentication/api/Variable.AUTH_GITHUB_CLIENT_SECRET.md +1 -1
- package/data/packages/platform-authentication/api/Variable.AUTH_GITHUB_SCOPE.md +15 -0
- package/data/packages/platform-authentication/api/Variable.AUTH_GOOGLE_SCOPE.md +15 -0
- package/data/packages/platform-authentication/api/Variable.AUTH_MICROSOFT_CALLBACK_URL.md +1 -1
- package/data/packages/platform-authentication/api/Variable.AUTH_MICROSOFT_CLIENT_ID.md +1 -1
- package/data/packages/platform-authentication/api/Variable.AUTH_MICROSOFT_CLIENT_SECRET.md +1 -1
- package/data/packages/platform-authentication/api/Variable.AUTH_MICROSOFT_SCOPE.md +15 -0
- package/data/packages/platform-authentication/api/Variable.AUTH_MICROSOFT_TENANT.md +1 -1
- package/data/packages/platform-authentication/api/Variable.MICROSOFT_AUTH_CONFIG_ENTRIES.md +1 -1
- package/data/packages/platform-authentication/api/Variable.PLATFORM_AUTHENTICATION_CONFIG_ENTRIES.md +1 -1
- package/data/packages/platform-authentication/api/Variable.SEED_ANONYMOUS_USERNAME.md +1 -1
- package/data/packages/platform-authentication/api/index.md +4 -0
- package/package.json +1 -1
|
@@ -55,7 +55,7 @@ validate(
|
|
|
55
55
|
profile): Promise<IAuthSubject>;
|
|
56
56
|
```
|
|
57
57
|
|
|
58
|
-
Defined in: [libs/platform-authentication/src/strategies/AppleStrategy.ts:
|
|
58
|
+
Defined in: [libs/platform-authentication/src/strategies/AppleStrategy.ts:72](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-authentication/src/strategies/AppleStrategy.ts#L72)
|
|
59
59
|
|
|
60
60
|
Validates the Apple authentication payload.
|
|
61
61
|
|
|
@@ -52,7 +52,7 @@ validate(
|
|
|
52
52
|
profile): Promise<IAuthSubject>;
|
|
53
53
|
```
|
|
54
54
|
|
|
55
|
-
Defined in: [libs/platform-authentication/src/strategies/GithubStrategy.ts:
|
|
55
|
+
Defined in: [libs/platform-authentication/src/strategies/GithubStrategy.ts:52](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-authentication/src/strategies/GithubStrategy.ts#L52)
|
|
56
56
|
|
|
57
57
|
#### Parameters
|
|
58
58
|
|
|
@@ -54,7 +54,7 @@ validate(
|
|
|
54
54
|
profile): Promise<IAuthSubject>;
|
|
55
55
|
```
|
|
56
56
|
|
|
57
|
-
Defined in: [libs/platform-authentication/src/strategies/GoogleStrategy.ts:
|
|
57
|
+
Defined in: [libs/platform-authentication/src/strategies/GoogleStrategy.ts:64](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-authentication/src/strategies/GoogleStrategy.ts#L64)
|
|
58
58
|
|
|
59
59
|
Validates the Google authentication payload.
|
|
60
60
|
|
|
@@ -54,7 +54,7 @@ validate(
|
|
|
54
54
|
profile): Promise<IAuthSubject>;
|
|
55
55
|
```
|
|
56
56
|
|
|
57
|
-
Defined in: [libs/platform-authentication/src/strategies/MicrosoftStrategy.ts:
|
|
57
|
+
Defined in: [libs/platform-authentication/src/strategies/MicrosoftStrategy.ts:66](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-authentication/src/strategies/MicrosoftStrategy.ts#L66)
|
|
58
58
|
|
|
59
59
|
Validates the Microsoft authentication payload.
|
|
60
60
|
|
|
@@ -10,6 +10,6 @@ editUrl: false
|
|
|
10
10
|
const APPLE_AUTH_CONFIG_ENTRIES: ReadonlyArray<Omit<IConfigRegistryEntry, 'module'>>;
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
Defined in: [libs/platform-authentication/src/apple/env.ts:
|
|
13
|
+
Defined in: [libs/platform-authentication/src/apple/env.ts:16](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-authentication/src/apple/env.ts#L16)
|
|
14
14
|
|
|
15
15
|
Configuration entries required by Apple Sign-In authentication.
|
|
@@ -10,6 +10,6 @@ editUrl: false
|
|
|
10
10
|
const AUTH_APPLE_CALLBACK_URL: IConfigKey<string>;
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
Defined in: [libs/platform-authentication/src/env.ts:
|
|
13
|
+
Defined in: [libs/platform-authentication/src/env.ts:115](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-authentication/src/env.ts#L115)
|
|
14
14
|
|
|
15
15
|
Apple Sign-In callback URL.
|
|
@@ -10,6 +10,6 @@ editUrl: false
|
|
|
10
10
|
const AUTH_APPLE_CLIENT_ID: IConfigKey<string>;
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
Defined in: [libs/platform-authentication/src/env.ts:
|
|
13
|
+
Defined in: [libs/platform-authentication/src/env.ts:106](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-authentication/src/env.ts#L106)
|
|
14
14
|
|
|
15
15
|
Apple Sign-In client (service) ID.
|
|
@@ -10,6 +10,6 @@ editUrl: false
|
|
|
10
10
|
const AUTH_APPLE_KEY_ID: IConfigKey<string>;
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
Defined in: [libs/platform-authentication/src/env.ts:
|
|
13
|
+
Defined in: [libs/platform-authentication/src/env.ts:112](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-authentication/src/env.ts#L112)
|
|
14
14
|
|
|
15
15
|
Apple Sign-In key ID.
|
|
@@ -10,6 +10,6 @@ editUrl: false
|
|
|
10
10
|
const AUTH_APPLE_PRIVATE_KEY: IConfigKey<string>;
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
Defined in: [libs/platform-authentication/src/env.ts:
|
|
13
|
+
Defined in: [libs/platform-authentication/src/env.ts:103](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-authentication/src/env.ts#L103)
|
|
14
14
|
|
|
15
15
|
Apple Sign-In private key (PEM string).
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: 'Variable: AUTH\_APPLE\_SCOPE'
|
|
3
|
+
generated: true
|
|
4
|
+
editUrl: false
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Variable: AUTH_APPLE_SCOPE
|
|
8
|
+
|
|
9
|
+
```ts
|
|
10
|
+
const AUTH_APPLE_SCOPE: IConfigKey<string>;
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Defined in: [libs/platform-authentication/src/env.ts:118](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-authentication/src/env.ts#L118)
|
|
14
|
+
|
|
15
|
+
Comma-separated list of Apple Sign-In scopes (e.g. `'name,email'`).
|
|
@@ -10,6 +10,6 @@ editUrl: false
|
|
|
10
10
|
const AUTH_APPLE_TEAM_ID: IConfigKey<string>;
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
Defined in: [libs/platform-authentication/src/env.ts:
|
|
13
|
+
Defined in: [libs/platform-authentication/src/env.ts:109](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-authentication/src/env.ts#L109)
|
|
14
14
|
|
|
15
15
|
Apple developer team ID.
|
|
@@ -10,6 +10,6 @@ editUrl: false
|
|
|
10
10
|
const AUTH_GITHUB_CALLBACK_URL: IConfigKey<string>;
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
Defined in: [libs/platform-authentication/src/env.ts:
|
|
13
|
+
Defined in: [libs/platform-authentication/src/env.ts:131](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-authentication/src/env.ts#L131)
|
|
14
14
|
|
|
15
15
|
GitHub OAuth callback URL.
|
|
@@ -10,6 +10,6 @@ editUrl: false
|
|
|
10
10
|
const AUTH_GITHUB_CLIENT_ID: IConfigKey<string>;
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
Defined in: [libs/platform-authentication/src/env.ts:
|
|
13
|
+
Defined in: [libs/platform-authentication/src/env.ts:125](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-authentication/src/env.ts#L125)
|
|
14
14
|
|
|
15
15
|
GitHub OAuth client ID.
|
|
@@ -10,6 +10,6 @@ editUrl: false
|
|
|
10
10
|
const AUTH_GITHUB_CLIENT_SECRET: IConfigKey<string>;
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
Defined in: [libs/platform-authentication/src/env.ts:
|
|
13
|
+
Defined in: [libs/platform-authentication/src/env.ts:128](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-authentication/src/env.ts#L128)
|
|
14
14
|
|
|
15
15
|
GitHub OAuth client secret.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: 'Variable: AUTH\_GITHUB\_SCOPE'
|
|
3
|
+
generated: true
|
|
4
|
+
editUrl: false
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Variable: AUTH_GITHUB_SCOPE
|
|
8
|
+
|
|
9
|
+
```ts
|
|
10
|
+
const AUTH_GITHUB_SCOPE: IConfigKey<string>;
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Defined in: [libs/platform-authentication/src/env.ts:134](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-authentication/src/env.ts#L134)
|
|
14
|
+
|
|
15
|
+
Comma-separated list of GitHub OAuth scopes (e.g. `'user:email,read:user'`).
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: 'Variable: AUTH\_GOOGLE\_SCOPE'
|
|
3
|
+
generated: true
|
|
4
|
+
editUrl: false
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Variable: AUTH_GOOGLE_SCOPE
|
|
8
|
+
|
|
9
|
+
```ts
|
|
10
|
+
const AUTH_GOOGLE_SCOPE: IConfigKey<string>;
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Defined in: [libs/platform-authentication/src/env.ts:77](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-authentication/src/env.ts#L77)
|
|
14
|
+
|
|
15
|
+
Comma-separated list of Google OAuth scopes (e.g. `'email,profile'`).
|
|
@@ -10,6 +10,6 @@ editUrl: false
|
|
|
10
10
|
const AUTH_MICROSOFT_CALLBACK_URL: IConfigKey<string>;
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
Defined in: [libs/platform-authentication/src/env.ts:
|
|
13
|
+
Defined in: [libs/platform-authentication/src/env.ts:90](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-authentication/src/env.ts#L90)
|
|
14
14
|
|
|
15
15
|
Microsoft OAuth2 callback URL.
|
|
@@ -10,6 +10,6 @@ editUrl: false
|
|
|
10
10
|
const AUTH_MICROSOFT_CLIENT_ID: IConfigKey<string>;
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
Defined in: [libs/platform-authentication/src/env.ts:
|
|
13
|
+
Defined in: [libs/platform-authentication/src/env.ts:84](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-authentication/src/env.ts#L84)
|
|
14
14
|
|
|
15
15
|
Microsoft OAuth2 client ID.
|
|
@@ -10,6 +10,6 @@ editUrl: false
|
|
|
10
10
|
const AUTH_MICROSOFT_CLIENT_SECRET: IConfigKey<string>;
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
Defined in: [libs/platform-authentication/src/env.ts:
|
|
13
|
+
Defined in: [libs/platform-authentication/src/env.ts:87](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-authentication/src/env.ts#L87)
|
|
14
14
|
|
|
15
15
|
Microsoft OAuth2 client secret.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: 'Variable: AUTH\_MICROSOFT\_SCOPE'
|
|
3
|
+
generated: true
|
|
4
|
+
editUrl: false
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Variable: AUTH_MICROSOFT_SCOPE
|
|
8
|
+
|
|
9
|
+
```ts
|
|
10
|
+
const AUTH_MICROSOFT_SCOPE: IConfigKey<string>;
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Defined in: [libs/platform-authentication/src/env.ts:96](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-authentication/src/env.ts#L96)
|
|
14
|
+
|
|
15
|
+
Comma-separated list of Microsoft OAuth scopes (e.g. `'user.read,mail.read'`).
|
|
@@ -10,6 +10,6 @@ editUrl: false
|
|
|
10
10
|
const AUTH_MICROSOFT_TENANT: IConfigKey<string>;
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
Defined in: [libs/platform-authentication/src/env.ts:
|
|
13
|
+
Defined in: [libs/platform-authentication/src/env.ts:93](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-authentication/src/env.ts#L93)
|
|
14
14
|
|
|
15
15
|
Microsoft tenant ID or `'common'` for multi-tenant.
|
|
@@ -10,6 +10,6 @@ editUrl: false
|
|
|
10
10
|
const MICROSOFT_AUTH_CONFIG_ENTRIES: ReadonlyArray<Omit<IConfigRegistryEntry, 'module'>>;
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
Defined in: [libs/platform-authentication/src/microsoft/env.ts:
|
|
13
|
+
Defined in: [libs/platform-authentication/src/microsoft/env.ts:15](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-authentication/src/microsoft/env.ts#L15)
|
|
14
14
|
|
|
15
15
|
Configuration entries required by Microsoft OAuth authentication.
|
package/data/packages/platform-authentication/api/Variable.PLATFORM_AUTHENTICATION_CONFIG_ENTRIES.md
CHANGED
|
@@ -10,6 +10,6 @@ editUrl: false
|
|
|
10
10
|
const PLATFORM_AUTHENTICATION_CONFIG_ENTRIES: ReadonlyArray<Omit<IConfigRegistryEntry, 'module'>>;
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
Defined in: [libs/platform-authentication/src/env.ts:
|
|
13
|
+
Defined in: [libs/platform-authentication/src/env.ts:148](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-authentication/src/env.ts#L148)
|
|
14
14
|
|
|
15
15
|
Core configuration entries required by `platform-authentication`.
|
|
@@ -10,6 +10,6 @@ editUrl: false
|
|
|
10
10
|
const SEED_ANONYMOUS_USERNAME: IConfigKey<string>;
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
Defined in: [libs/platform-authentication/src/env.ts:
|
|
13
|
+
Defined in: [libs/platform-authentication/src/env.ts:141](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-authentication/src/env.ts#L141)
|
|
14
14
|
|
|
15
15
|
Username used for the anonymous seed user.
|
|
@@ -64,13 +64,16 @@ editUrl: false
|
|
|
64
64
|
| [AUTH_APPLE_CLIENT_ID](Variable.AUTH_APPLE_CLIENT_ID) | Apple Sign-In client (service) ID. |
|
|
65
65
|
| [AUTH_APPLE_KEY_ID](Variable.AUTH_APPLE_KEY_ID) | Apple Sign-In key ID. |
|
|
66
66
|
| [AUTH_APPLE_PRIVATE_KEY](Variable.AUTH_APPLE_PRIVATE_KEY) | Apple Sign-In private key (PEM string). |
|
|
67
|
+
| [AUTH_APPLE_SCOPE](Variable.AUTH_APPLE_SCOPE) | Comma-separated list of Apple Sign-In scopes (e.g. `'name,email'`). |
|
|
67
68
|
| [AUTH_APPLE_TEAM_ID](Variable.AUTH_APPLE_TEAM_ID) | Apple developer team ID. |
|
|
68
69
|
| [AUTH_GITHUB_CALLBACK_URL](Variable.AUTH_GITHUB_CALLBACK_URL) | GitHub OAuth callback URL. |
|
|
69
70
|
| [AUTH_GITHUB_CLIENT_ID](Variable.AUTH_GITHUB_CLIENT_ID) | GitHub OAuth client ID. |
|
|
70
71
|
| [AUTH_GITHUB_CLIENT_SECRET](Variable.AUTH_GITHUB_CLIENT_SECRET) | GitHub OAuth client secret. |
|
|
72
|
+
| [AUTH_GITHUB_SCOPE](Variable.AUTH_GITHUB_SCOPE) | Comma-separated list of GitHub OAuth scopes (e.g. `'user:email,read:user'`). |
|
|
71
73
|
| [AUTH_GOOGLE_CALLBACK_URL](Variable.AUTH_GOOGLE_CALLBACK_URL) | Google OAuth2 callback URL. |
|
|
72
74
|
| [AUTH_GOOGLE_CLIENT_ID](Variable.AUTH_GOOGLE_CLIENT_ID) | Google OAuth2 client ID. |
|
|
73
75
|
| [AUTH_GOOGLE_CLIENT_SECRET](Variable.AUTH_GOOGLE_CLIENT_SECRET) | Google OAuth2 client secret. |
|
|
76
|
+
| [AUTH_GOOGLE_SCOPE](Variable.AUTH_GOOGLE_SCOPE) | Comma-separated list of Google OAuth scopes (e.g. `'email,profile'`). |
|
|
74
77
|
| [AUTH_JWT_EXPIRES_IN](Variable.AUTH_JWT_EXPIRES_IN) | Lifetime of access tokens (e.g. `'15m'`, `'1h'`). |
|
|
75
78
|
| [AUTH_JWT_SECRET](Variable.AUTH_JWT_SECRET) | Secret used to sign JWTs. |
|
|
76
79
|
| [AUTH_MFA_CHALLENGE_EXPIRES_IN](Variable.AUTH_MFA_CHALLENGE_EXPIRES_IN) | How long an MFA challenge stays valid (e.g. `'5m'`). |
|
|
@@ -85,6 +88,7 @@ editUrl: false
|
|
|
85
88
|
| [AUTH_MICROSOFT_CALLBACK_URL](Variable.AUTH_MICROSOFT_CALLBACK_URL) | Microsoft OAuth2 callback URL. |
|
|
86
89
|
| [AUTH_MICROSOFT_CLIENT_ID](Variable.AUTH_MICROSOFT_CLIENT_ID) | Microsoft OAuth2 client ID. |
|
|
87
90
|
| [AUTH_MICROSOFT_CLIENT_SECRET](Variable.AUTH_MICROSOFT_CLIENT_SECRET) | Microsoft OAuth2 client secret. |
|
|
91
|
+
| [AUTH_MICROSOFT_SCOPE](Variable.AUTH_MICROSOFT_SCOPE) | Comma-separated list of Microsoft OAuth scopes (e.g. `'user.read,mail.read'`). |
|
|
88
92
|
| [AUTH_MICROSOFT_TENANT](Variable.AUTH_MICROSOFT_TENANT) | Microsoft tenant ID or `'common'` for multi-tenant. |
|
|
89
93
|
| [AUTH_VERIFY_JWT_EXPIRES_IN](Variable.AUTH_VERIFY_JWT_EXPIRES_IN) | Lifetime of email-verification JWTs. |
|
|
90
94
|
| [GITHUB_AUTH_CONFIG_ENTRIES](Variable.GITHUB_AUTH_CONFIG_ENTRIES) | Configuration entries required by GitHub OAuth authentication. |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@breadstone/archipel-mcp",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7",
|
|
4
4
|
"description": "MCP server providing Archipel platform knowledge — documentation, query patterns, and coding conventions — to AI development tools.",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "./src/main.js",
|