-
Notifications
You must be signed in to change notification settings - Fork 1
copia para dejar comentarios #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,99 @@ | ||||||||||
| # Using AI Assistants | ||||||||||
|
|
||||||||||
| Integrate faster with Crossmint by ingesting the docs into your AI-based code helpers (like Cursor, GitHub Copilot, etc.). | ||||||||||
|
|
||||||||||
| {" "} | ||||||||||
|
|
||||||||||
| <Card title="Markdown docs" icon="book" iconType="duotone" href="https://docs.crossmint.com/llms-full.txt"> | ||||||||||
| AI assistant ready docs | ||||||||||
| </Card> | ||||||||||
|
|
||||||||||
| ## Integrate with Cursor | ||||||||||
|
|
||||||||||
| 1. Navigate to Cursor Settings > Features > Docs | ||||||||||
|
|
||||||||||
| 2. Select "Add new doc" and paste the following URL: | ||||||||||
|
|
||||||||||
| ``` | ||||||||||
| https://docs.crossmint.com/llms-full.txt | ||||||||||
| ``` | ||||||||||
|
|
||||||||||
| 3. Use `@docs -> Crossmint` to reference Crossmint's docs in your code. | ||||||||||
|
|
||||||||||
|
|
||||||||||
| --- | ||||||||||
|
|
||||||||||
| > To find navigation and other pages in this documentation, fetch the llms.txt file at: https://docs.crossmint.com/llms.txt | ||||||||||
|
|
||||||||||
|
|
||||||||||
| ## Crossmint Docs MCP Server | ||||||||||
|
|
||||||||||
| ### Server Details | ||||||||||
|
|
||||||||||
| Model Context Protocol (MCP) is a standard that enables AI agents to connect quickly and efficiently to external tools or data sources. | ||||||||||
|
|
||||||||||
| The Crossmint Docs MCP Server provides real-time access to the Crossmint documentation, offering a more efficient alternative to traditional `llms.txt` files. Instead of loading the entire documentation with every interaction which unnecessarily increases token usage the server receives your query and returns only the most relevant sections. This approach modularizes token consumption, improves performance, and ensures that the latest version of the documentation is always consulted. | ||||||||||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Siempre hay que intentar escribir lo menor posible para dar la mayor información. Cambiando un poco las palabras en este texto sigo diciendo:
|
||||||||||
|
|
||||||||||
| - **Name:** Crossmint Docs | ||||||||||
| - **URL:** https://docs.crossmint.com/mcp | ||||||||||
| - **Transport:** Streamable HTTP | ||||||||||
|
Comment on lines
+37
to
+39
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No se que es esto? para que sirve? tengo que copiarlo?
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Si, es lo que necesitas para conectar el MCP Server a la herramienta IA que uses. Principalmente la URL y el transport que son los mas importantes, el nombre es personalizable Justo en la seccion Installation se muestra |
||||||||||
|
|
||||||||||
| ### Installation | ||||||||||
|
|
||||||||||
| Depending on the tool you use, the configuration may vary. | ||||||||||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Genial! Que herramienta me enseña a configurar esta guia? Por qué elegis esa herramienta? Cuales son las otras opciones?
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ahora leí más abajo, estaria bueno dar un preambulo como:
Suggested change
|
||||||||||
|
|
||||||||||
| <Tabs> | ||||||||||
| <Tab title="Claude Code"> | ||||||||||
| Run the following command in your terminal: | ||||||||||
|
|
||||||||||
| ```bash | ||||||||||
| claude mcp add --transport http crossmint-docs https://docs.crossmint.com/mcp | ||||||||||
| ``` | ||||||||||
| </Tab> | ||||||||||
|
|
||||||||||
| <Tab title="Cursor"> | ||||||||||
| Add it globally by opening the command palette (`Cmd/Ctrl + Shift + P`) and selecting `> Cursor Settings > MCP > Add new global MCP server`: | ||||||||||
|
|
||||||||||
| ```json | ||||||||||
| { | ||||||||||
| "mcpServers": { | ||||||||||
| "Crossmint Docs": { | ||||||||||
| "type": "http", | ||||||||||
| "url": "https://docs.crossmint.com/mcp" | ||||||||||
| } | ||||||||||
| } | ||||||||||
| } | ||||||||||
| ``` | ||||||||||
| </Tab> | ||||||||||
|
|
||||||||||
| <Tab title="VS Code"> | ||||||||||
| Add it globally by opening the command palette (`Cmd/Ctrl + Shift + P`) and selecting `MCP: Open User Configuration`: | ||||||||||
|
|
||||||||||
| ```json | ||||||||||
| { | ||||||||||
| "servers": { | ||||||||||
| "Crossmint Docs": { | ||||||||||
| "type": "http", | ||||||||||
| "url": "https://docs.crossmint.com/mcp" | ||||||||||
| } | ||||||||||
| } | ||||||||||
| } | ||||||||||
| ``` | ||||||||||
| </Tab> | ||||||||||
| </Tabs> | ||||||||||
|
|
||||||||||
| ### Usage | ||||||||||
|
|
||||||||||
| Once you have configured and connected the MCP Server, you will have access to a single tool called `SearchCrossmintDocs`. This tool allows you to search through the Crossmint documentation to find relevant information, code examples, API references, and guides. | ||||||||||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Seguis diciendo "you will have access..." pero el acceso lo tendrá su agente. Importante diferencia!!
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Factos |
||||||||||
|
|
||||||||||
| **Input** | ||||||||||
|
|
||||||||||
| Your query message. | ||||||||||
|
|
||||||||||
| **Output** | ||||||||||
|
|
||||||||||
| A list of results that includes the following fields: Title, Link, and Content, along with code examples when available. | ||||||||||
|
Comment on lines
+89
to
+95
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Esto es un poco raro y no me enseña nada. Por qué no poner unos buenos ejemplos de cómo usarlo? Algunas preguntas que den resultados que impresionen quizás! 2 o 3 ejemplos, no mucho.
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Listo, agregados ejemplos mas detallados de input y responses |
||||||||||
|
|
||||||||||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Siempre terminar con una sección de "next steps" o recomendacione para que el usuario siga navegando paginas que deba ver
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Listo, agregada seccion de Learn More |
||||||||||
| ### Mintlify | ||||||||||
|
|
||||||||||
| The Crossmint documentation and its MCP Server are powered by **Mintlify**. You can find more detailed technical information in their [documentation](https://www.mintlify.com/docs/ai/model-context-protocol#using-your-mcp-server). | ||||||||||
|
Comment on lines
+97
to
+99
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
No nos interesa, desde crossmint, darle espacio a mintlify simplemente porque le agrega lectura al usuario sin darle valor real. |
||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Siempre es bueno agregar una breve descripcion de una oración con lo que va aprender el usuario
"Learn How To Use The Crossmint MCP"