VITUR runs a public, read-only MCP (Model Context Protocol) server so that compatible clients and AI agents can query up-to-date information about its events and content.

Versión en español: MCP para agentes.

Connection

Add a remote server with this URL:

https://mcp.vitursummit.com/mcp

The transport is Streamable HTTP. No Application Password, API key or any other client credential is required.

The connection is configured explicitly in the MCP client. An agent that merely visits this website is not connected to the server.

Copy-paste configuration

The snippets below can be pasted as they are. Nothing needs to be replaced.

Claude Code (command line):

claude mcp add --transport http vitur https://mcp.vitursummit.com/mcp

Claude Desktop, Cursor and other clients using an mcpServers file (claude_desktop_config.json, .cursor/mcp.json):

{
  "mcpServers": {
    "vitur": {
      "type": "http",
      "url": "https://mcp.vitursummit.com/mcp"
    }
  }
}

Visual Studio Code (.vscode/mcp.json):

{
  "servers": {
    "vitur": {
      "type": "http",
      "url": "https://mcp.vitursummit.com/mcp"
    }
  }
}

If your client asks for a connector name, any value works: vitur is the one used in these examples. If it only offers a URL field, paste the endpoint URL and leave everything else blank.

Ask your agent to do it

If your agent has shell or file access — Claude Code, Cursor, VS Code with Copilot, Windsurf, Codex CLI, Gemini CLI and the like — you do not need to configure anything by hand. Copy this text and hand it to your agent:

Install the VITUR MCP server in this client.

- Endpoint: https://mcp.vitursummit.com/mcp
- Transport: Streamable HTTP
- No authentication: do not ask for or configure an API key, token or password.
- Server name: vitur

If you are Claude Code, run this command:
claude mcp add --scope user --transport http vitur https://mcp.vitursummit.com/mcp

If your client is configured through a file, add the entry to the file it uses and leave any already configured servers untouched.

When you are done, check that it works by calling the vitur-proximo-evento tool and tell me which event it returns. If the client needs a restart to load the server, let me know.

--scope user makes the server available across all your projects. Without it, Claude Code installs it only for the current project.

You start the installation, not this website: no agent should install an MCP server merely because it read this page, and a well-built client will not do so. If an agent offers to connect this server without you having asked, be suspicious.

In Claude Desktop, ChatGPT and other chat-only assistants the agent cannot install it: there you add the connector by hand in the settings, using the endpoint URL.

What you can query

Structured information is read from WordPress in real time. Editorial pages may describe a past edition even when a different future edition exists; for dates, ticket sales and participants, the query for the corresponding edition should always take precedence.

Available tools

The server exposes twelve tools. The authoritative list is always the one the server itself returns via tools/list; the list below is a courtesy copy for anyone evaluating the integration. The server exposes no resources and no prompts.

Institutional

Events

Tickets

Participants and agenda

Content

Examples

What is VITUR and when is its next event?
Which speakers are confirmed for Vitur Forum Madrid 2026?
Which companies take part in Forum Madrid 2026, and in which category?
Summarise the Summit 2026 agenda, then show only 13 May in room a.
What does the Vitur Pass include and where do I buy it?
Find recent VITUR news about regulation.

Note that tool names and parameter values are in Spanish, but queries can be written in any language: the client translates the request into the corresponding tool call.

When the server returns an edition identifier, reuse it in later queries so that past and future editions of the same city are not mixed up.

Usage limits, freshness and reuse