trypost/lang/fr/mcp.php
Paulo Castellano 4d8353d758
MCP: workspace settings, viewer read access, and token access (#241)
* Add workspace MCP settings and token access controls.

Ship MCP settings UI, OAuth revoke/list helpers, Passport deploy wiring,
and workspace.token:mcp gating so assistants can connect without pulling
in welcome/onboarding from the parent epic.

Co-authored-by: Cursor <cursoragent@cursor.com>

* Type MCP client config shapes instead of string checks.

Encode http/config-root on each advanced client and tighten primary
client ids so snippet generation does not branch on magic strings.

Co-authored-by: Cursor <cursoragent@cursor.com>

* Polish MCP settings follow-ups from review.

Translate Ukrainian MCP copy, deep-link ChatGPT into connector
creation, drop an unused asset and revoke arg, and assert PATs are
rejected on the MCP endpoint.

Co-authored-by: Cursor <cursoragent@cursor.com>

* Harden MCP connected clients, revoke scope, and OAuth consent.

List recoverable sessions with live refresh tokens, revoke only PATs,
throttle registration alone, and block viewers from authorizing MCP.

Co-authored-by: Cursor <cursoragent@cursor.com>

* Simplify MCP OAuth route throttling to a single middleware group.

Co-authored-by: Cursor <cursoragent@cursor.com>

* Allow workspace viewers read-only MCP access with web policy writes.

Mirror the web app: MCP connects on view + OAuth mcp:use, write tools
enforce createPost/update/delete/manageAccounts/manageTeam, and demotion
to Viewer keeps grants. Cover role denials, consent, and disconnect.

Co-authored-by: Cursor <cursoragent@cursor.com>

* Harden MCP tool authz with shared workspace helpers.

Route ApiKey tools through AuthorizesMcpTool, fail closed on null user
or policy argument, and resolve the current workspace before mutating.

Co-authored-by: Cursor <cursoragent@cursor.com>

* Drop redundant string casts on validated request data.

Enum::from and validated() fields are already strings, so the casts
add noise without changing behavior.

Co-authored-by: Cursor <cursoragent@cursor.com>

* Show only the current user's MCP connections in settings.

Match API keys privacy: list and disconnect your own OAuth clients,
not teammates' across the account.

Co-authored-by: Cursor <cursoragent@cursor.com>

* Cover LoadWorkspaceFromToken gaps and harden AuthorizesMcpTool tests.

Co-authored-by: Cursor <cursoragent@cursor.com>

* Drop redundant is_string guard before UpdatePostTool find.

Co-authored-by: Cursor <cursoragent@cursor.com>

* Refactor AppSidebar to always show MCP link and simplify route middleware definition in ai.php. The MCP link is now consistently displayed regardless of the current workspace state, and the route middleware syntax has been streamlined.

* Refresh MCP connected clients with Inertia usePoll.

Co-authored-by: Cursor <cursoragent@cursor.com>

* Bump laravel/mcp to 0.9.1 and add the TryPost server icon.

Requires laravel/boost 2.5 for the Icon attribute; expose images/trypost/icon.png on TryPostServer.

Co-authored-by: Cursor <cursoragent@cursor.com>

* Drop no-op ReflectionClass import in TryPostServerTest.

Co-authored-by: Cursor <cursoragent@cursor.com>

---------

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-06 09:54:51 -03:00

47 lines
2.4 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
declare(strict_types=1);
return [
'title' => 'MCP',
'subtitle' => 'Connectez des assistants IA à votre workspace TryPost. Ils utilisent les mêmes permissions que chaque utilisateur connecté.',
'copy_step' => 'Copiez lURL du serveur TryPost',
'open_step' => 'Ouvrez votre assistant IA',
'copy' => 'Copier lURL',
'connect' => 'Connecter avec :client',
'step_add' => 'Collez le nom, lURL ou la config ci-dessous dans votre app. La connexion souvre dans le navigateur la première fois.',
'name_label' => 'Nom',
'url_label' => 'URL du serveur',
'config_label' => 'Config',
'connected_title' => 'Apps connectées',
'connected_description' => 'Assistants auxquels vous vous êtes connecté. Déconnectez ceux dont vous navez plus besoin.',
'connected_empty' => 'Rien de connecté pour linstant. Utilisez Claude, ChatGPT ou un autre client ci-dessus.',
'disconnect' => 'Déconnecter',
'disconnect_title' => 'Déconnecter lapp',
'disconnect_confirm' => 'Cela déconnecte lapp de TryPost. Elle devra se reconnecter pour utiliser MCP à nouveau.',
'disconnected' => 'App déconnectée.',
'copied' => 'Copié',
'last_used' => 'Dernière utilisation',
'never' => 'Jamais',
'documentation_title' => 'Documentation',
'documentation_description' => 'Guides par client, tools disponibles et dépannage.',
'view_docs' => 'Voir la documentation',
'connector_name' => 'TryPost',
'authorize_logged_in_as' => 'Logged in as:',
'other_clients_title' => 'Autres apps',
'other_clients_description' => 'Cursor, VS Code, Claude Code et toute app qui parle MCP.',
'clients' => [
'claude' => 'Ouvrez Settings → Connectors, ajoutez un connecteur personnalisé, puis collez lURL ci-dessus.',
'chatgpt' => 'Ouvrez Settings → Apps & Connectors, créez un connecteur personnalisé, puis collez lURL ci-dessus.',
'cursor' => 'Ajoutez TryPost comme serveur MCP distant dans Cursor.',
'cursor_name' => 'Cursor',
'vscode' => 'Collez la configuration ci-dessous dans les paramètres MCP de VS Code.',
'vscode_name' => 'VS Code',
'claude_code' => 'Collez la configuration ci-dessous dans les paramètres MCP de Claude Code.',
'claude_code_name' => 'Claude Code',
'other' => 'Fonctionne avec tout client qui lit une config mcpServers.',
'other_name' => 'Autres',
],
];