-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmcp-server.json
More file actions
151 lines (151 loc) · 4.42 KB
/
mcp-server.json
File metadata and controls
151 lines (151 loc) · 4.42 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "laravilt-auth",
"version": "1.0.0",
"description": "MCP Server for Laravilt Auth Package Documentation",
"mcpServers": {
"laravilt-auth-docs": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"./docs"
],
"metadata": {
"description": "Provides access to Laravilt Auth package documentation",
"categories": ["auth", "authentication", "laravel", "documentation"]
}
}
},
"resources": [
{
"uri": "laravilt://auth/docs/index",
"name": "Laravilt Auth Documentation",
"description": "Complete documentation for the Laravilt Auth package",
"mimeType": "text/markdown"
},
{
"uri": "laravilt://auth/docs/mcp-server",
"name": "MCP Server Integration Guide",
"description": "Guide for MCP server integration and auth configuration",
"mimeType": "text/markdown"
},
{
"uri": "laravilt://auth/events",
"name": "Auth Events Reference",
"description": "Complete reference for authentication events",
"mimeType": "text/markdown"
},
{
"uri": "laravilt://auth/features",
"name": "Auth Features Guide",
"description": "Guide for configuring authentication features",
"mimeType": "text/markdown"
}
],
"tools": [
{
"name": "search_auth_docs",
"description": "Search the Laravilt Auth documentation for specific topics",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search query (e.g., 'two-factor', 'social login', 'passkeys')"
}
},
"required": ["query"]
}
},
{
"name": "get_auth_config",
"description": "Get authentication configuration options and examples",
"inputSchema": {
"type": "object",
"properties": {
"feature": {
"type": "string",
"description": "Feature name (e.g., 'login', 'registration', 'two-factor', 'social', 'passkeys', 'magic-links')"
}
},
"required": ["feature"]
}
},
{
"name": "list_auth_events",
"description": "List all available authentication events",
"inputSchema": {
"type": "object",
"properties": {
"category": {
"type": "string",
"description": "Event category (e.g., 'login', 'registration', 'otp', 'two-factor', 'password', 'social', 'passkey', 'magic-link')"
}
}
}
},
{
"name": "get_event_example",
"description": "Get example code for listening to a specific auth event",
"inputSchema": {
"type": "object",
"properties": {
"event": {
"type": "string",
"description": "Event class name (e.g., 'LoginSuccessful', 'RegistrationCompleted', 'TwoFactorEnabled')"
}
},
"required": ["event"]
}
},
{
"name": "get_auth_page_example",
"description": "Get example code for customizing authentication pages",
"inputSchema": {
"type": "object",
"properties": {
"page": {
"type": "string",
"description": "Page type (e.g., 'login', 'register', 'forgot-password', 'reset-password', 'verify-email', 'two-factor-challenge')"
}
},
"required": ["page"]
}
},
{
"name": "get_social_provider_config",
"description": "Get configuration example for a social authentication provider",
"inputSchema": {
"type": "object",
"properties": {
"provider": {
"type": "string",
"description": "Provider name (e.g., 'google', 'github', 'facebook', 'twitter', 'linkedin')"
}
},
"required": ["provider"]
}
},
{
"name": "install_auth",
"description": "Install the Auth package. Uses: php artisan auth:install",
"inputSchema": {
"type": "object",
"properties": {
"force": {
"type": "boolean",
"description": "Overwrite existing files"
},
"withoutAssets": {
"type": "boolean",
"description": "Skip asset publishing"
},
"withoutMigrations": {
"type": "boolean",
"description": "Skip running migrations"
}
}
}
}
]
}