Glubler Model Context Protocol (MCP) Server enables Large Language Models (OpenAI ChatGPT, Anthropic Claude, Claude Desktop, Chatbox, Cursor, and custom AI agents) to interact directly with Glubler collections, search the registered websites catalog, glue missing websites, and organize content via standard natural language prompts.
The Glubler MCP infrastructure operates with both hosted remote streaming endpoints and standard OAuth 2.1 discovery services:
| Service | URL / Endpoint | Specification |
|---|---|---|
| MCP Server (SSE) | https://mcp.glubler.com/sse |
Server-Sent Events (SSE) remote transport |
| Messages Endpoint | https://mcp.glubler.com/messages |
JSON-RPC 2.0 message handler |
| Protected Resource Metadata | https://glubler.com/.well-known/oauth-protected-resource |
RFC 9728 discovery |
| OAuth 2.1 Authorization Server | https://glubler.com/.well-known/openid-configuration |
RFC 8414 discovery |
| Authorize Endpoint | https://glubler.com/connect/authorize |
OAuth 2.1 Code Flow + PKCE (S256) |
| Token Endpoint | https://glubler.com/connect/token |
Token exchange & refresh |
For cloud AI platforms such as OpenAI and Anthropic, Glubler implements the official OAuth 2.1 specification with mandatory Proof Key for Code Exchange (PKCE S256):
www.glubler.com remain independent; authorization is granted strictly to the AI client.mcp:all allows managing collections and bookmarks on behalf of the user.Users can also generate a dedicated 30-day personal MCP token directly inside Glubler Settings without browser popups:
Authorization: Bearer YOUR_TOKEN.Once connected, the AI model has access to the following 10 structured tools:
| Tool Name | Description | Plan Requirement |
|---|---|---|
search_glubler_catalog |
Search Glubler's database for existing websites, news sources, games, and tools. | Free |
list_my_glublers |
List all collections (glublers) and nested subglublers belonging to the authenticated account. | Free |
get_glubler_details |
Retrieve full contents of a collection, including saved websites, notes, and subglublers. | Free |
get_public_glubler |
View any public Glubler list using username and slugName (no auth required). |
Free |
create_glubler |
Create a new collection. When parentGlublerId is specified (subglubler), requires a Pro plan. |
Pro for Subglublers |
rename_glubler |
Rename a collection or subglubler's title and/or URL slug. | Free |
delete_glubler |
Permanently delete a collection and its items. | Free |
glue_website |
Save a website to a collection. Missing websites are automatically fetched, scraped, and favicon-checked. | Free |
glue_websites_batch |
Save multiple websites in a single prompt. Glubler resolves catalog hits and fetches external sites in batch. | Free |
unglue_website |
Remove a website from a collection. | Free |
When connecting Glubler to a Custom GPT, Actions, or OpenAI's Remote MCP integration:
https://mcp.glubler.com/ssehttps://glubler.com/connect/authorizehttps://glubler.com/connect/tokenmcp:all offline_accessAdd the remote server directly to your claude_desktop_config.json:
{
"mcpServers": {
"glubler": {
"url": "https://mcp.glubler.com/sse",
"headers": {
"Authorization": "Bearer YOUR_GLUBLER_TOKEN"
}
}
}
}
For Chatbox or any desktop AI client supporting Remote MCP over HTTP/SSE:
Remote (http/sse).Legacy (Standard SSE transport).https://mcp.glubler.com/sse.Authorization=Bearer YOUR_GLUBLER_TOKEN.Glubler provides generous capabilities on the Free plan, while advanced nested hierarchy is reserved for Pro members:
PRO_PLAN_REQUIRED, and the AI guides the user to upgrade at glubler.com/settings.