Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
99 changes: 99 additions & 0 deletions section-using-ai-assistants/proposal copy.md
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

Copy link
Copy Markdown
Author

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"

### 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.
Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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.
The Crossmint Docs MCP gives your agent the ability to access real-time the Crossmint documentation, which is more efficient than traditional `llms.txt` files.
Instead of loading the entire documentation with every interaction the server receives your query and returns only the most relevant sections.

Siempre hay que intentar escribir lo menor posible para dar la mayor información. Cambiando un poco las palabras en este texto sigo diciendo:

  • que es lo que hace
  • por qué es importante usarlo


- **Name:** Crossmint Docs
- **URL:** https://docs.crossmint.com/mcp
- **Transport:** Streamable HTTP
Comment on lines +37 to +39
Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No se que es esto? para que sirve? tengo que copiarlo?

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The 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.
Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The 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?

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The 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
Depending on the tool you use, the configuration may vary.
Depending on the tool you use, the configuration may vary. In this guide we'll share the configuration for the most common tools.


<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.
Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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.
Once you have configured and connected the MCP Server, your agent will have access to a single tool called `SearchCrossmintDocs`. This tool allows it to search through the Crossmint documentation to find relevant information, code examples, API references, and guides.

Seguis diciendo "you will have access..." pero el acceso lo tendrá su agente. Importante diferencia!!

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The 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
Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The 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.

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Listo, agregados ejemplos mas detallados de input y responses


Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The 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

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The 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
Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
### 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).

No nos interesa, desde crossmint, darle espacio a mintlify simplemente porque le agrega lectura al usuario sin darle valor real.