# overview: Coding IA URL: https://generaltranslation.com/it/docs/overview/ai-tools.mdx --- title: Coding IA description: Risorse per strumenti di coding IA, inclusi llms.txt e un server MCP --- Forniamo diverse risorse per aiutare i tuoi strumenti di IA a interagire con General Translation. ## llms.txt ### llms.txt Fornisci ai tuoi strumenti di coding IA il nostro file [llms.txt](/llms.txt) per una breve panoramica della documentazione in un formato adatto agli LLM. ### llms-full.txt Fornisci ai tuoi strumenti di coding IA il nostro file [llms-full.txt](/llms-full.txt) per accedere all'intero contenuto della nostra documentazione in un formato compatibile con gli LLM. ## Server MCP Offriamo un semplice server MCP che strumenti di IA come Cursor, Windsurf e Claude Code possono utilizzare per accedere alla nostra documentazione. ### Configurazione del server MCP #### Server MCP locale Per gli strumenti di IA che mantengono una connessione persistente, come **Windsurf**, **Cursor** e **Claude Code**, puoi eseguire in locale il nostro server MCP per la documentazione. ```json title="mcp.json" copy { "mcpServers": { "generaltranslation": { "command": "npx", "args": ["-y", "@generaltranslation/mcp@latest"] } } } ``` #### MCP Streamable-HTTP In alternativa, puoi usare il nostro server MCP ospitato all’indirizzo `https://mcp.gtx.dev`. ```json title=".mcp.json" { "mcpServers": { "generaltranslation": { "type": "streamable-http", "url": "https://mcp.gtx.dev" } } } ``` #### SSE MCP Per gli strumenti che non supportano streamable-http, puoi usare l'endpoint SSE. ```json title=".mcp.json" { "mcpServers": { "generaltranslation": { "type": "sse", "url": "https://mcp.gtx.dev/sse" } } } ``` ### Utilizzo del server MCP #### Cursor Per usare il server MCP in Cursor, chiedi all'IA di usare lo strumento `generaltranslation`. Ad esempio, puoi chiedere all'IA: "Usa lo strumento `generaltranslation` per spiegare come usare un componente ``." #### Windsurf Per usare il server MCP in Windsurf, chiedi all'IA di utilizzare il server MCP `generaltranslation`. Ad esempio, puoi chiedere all'IA: "Usa il server MCP generaltranslation per spiegare come usare un componente ``." #### Claude Code Per usare il server MCP in Claude Code, chiedi all'IA di usare il server MCP `generaltranslation`.