UnClick is a unified MCP gateway to 450+ endpoints across 178+ tools, from social media and e-commerce to finance and developer utilities. Instead of installing separate servers for each integration, you get one package that taps into a continuously updated API catalog. It surfaces memory session tools, Fishbowl coordination for todos and ideas, and hidden discovery tools that let your agent search and call any endpoint dynamically. You'll need an API key from unclick.world. Install once from the GitHub release tarball, and your agent automatically picks up new tools as they ship to the upstream API without waiting for package updates.
Public tool metadata for what this MCP can expose to an agent.
REDDIT_CREATE_REDDIT_POSTCreates a new text or link post on a specified, existing Reddit subreddit, optionally applying a flair.6 paramsCreates a new text or link post on a specified, existing Reddit subreddit, optionally applying a flair.
urlstringkindstringlink · selftextstringtitlestringflair_idstringsubredditstringREDDIT_DELETE_REDDIT_COMMENTDeletes a Reddit comment, identified by its fullname ID, if it was authored by the authenticated user.1 paramsDeletes a Reddit comment, identified by its fullname ID, if it was authored by the authenticated user.
idstringREDDIT_DELETE_REDDIT_POSTPermanently deletes a Reddit post by its ID, provided the authenticated user has deletion permissions for that post.1 paramsPermanently deletes a Reddit post by its ID, provided the authenticated user has deletion permissions for that post.
idstringREDDIT_EDIT_REDDIT_COMMENT_OR_POSTEdits the body text of the authenticated user's own existing comment or self-post on Reddit; cannot edit link posts or titles.2 paramsEdits the body text of the authenticated user's own existing comment or self-post on Reddit; cannot edit link posts or titles.
textstringthing_idstringREDDIT_GET_USER_FLAIRFetches the list of available link flairs (i.e., post flairs, not user flairs) for a given subreddit.1 paramsFetches the list of available link flairs (i.e., post flairs, not user flairs) for a given subreddit.
subredditstringREDDIT_POST_REDDIT_COMMENTPosts a comment on Reddit, replying to an existing and accessible submission (post) or another comment.2 paramsPosts a comment on Reddit, replying to an existing and accessible submission (post) or another comment.
textstringthing_idstringREDDIT_RETRIEVE_POST_COMMENTSRetrieves all comments for a Reddit post given its article ID (which must be for an existing, public post); nested replies within comments are returned as raw dictionaries requiring parsing.1 paramsRetrieves all comments for a Reddit post given its article ID (which must be for an existing, public post); nested replies within comments are returned as raw dictionaries requiring parsing.
articlestringREDDIT_RETRIEVE_REDDIT_POSTRetrieves the current hot posts from a specified, publicly accessible subreddit.2 paramsRetrieves the current hot posts from a specified, publicly accessible subreddit.
sizeintegersubredditstringREDDIT_RETRIEVE_SPECIFIC_COMMENTRetrieves detailed information for a specific Reddit comment or post using its fullname.1 paramsRetrieves detailed information for a specific Reddit comment or post using its fullname.
idstringREDDIT_SEARCH_ACROSS_SUBREDDITSSearches Reddit for content (e.g., posts, comments) using a query, with results typically confined to subreddits unless `restrict_sr` is set to False.4 paramsSearches Reddit for content (e.g., posts, comments) using a query, with results typically confined to subreddits unless `restrict_sr` is set to False.
sortstringrelevance · new · top · commentsdefault: relevancelimitintegerrestrict_srbooleansearch_querystringThe app store for AI agents. unclick.world
450+ callable endpoints across 178+ tools, available to any MCP-compatible AI client. New tools ship to the API continuously. Your agent picks them up automatically; no package update is needed.
Using the latest GitHub release (no npm account required):
{
"mcpServers": {
"unclick": {
"command": "npx",
"args": ["-y", "https://github.com/malamutemayhem/unclick/releases/latest/download/unclick.tgz"]
}
}
}
Add this to your claude_desktop_config.json (or equivalent for Cursor, Windsurf, etc).
Or install globally from GitHub:
npm install -g https://github.com/malamutemayhem/unclick/releases/latest/download/unclick.tgz
This repo follows the AGENTS.md fence rules for agent work.
For local web development:
npm run dev
For the API workspace:
npm run dev:api
Run the main test suite:
npm test
Run the production build check:
npm run build
UnClick uses a split license. The platform (website, API, and hosted backend
and memory services) is AGPL-3.0 (see LICENSE). The npm client
package @unclick/mcp-server stays MIT, and the standalone connector
packages stay Apache-2.0. Full breakdown and reasoning in
LICENSING.md.
Gives your agent access to a growing catalog of tools across developer utilities, social media, e-commerce, finance, messaging, media, security, and more. You don't need to install separate packages for each integration. One server provides access to everything in the catalog.
UnClick exposes a small direct surface for daily agent workflows, plus hidden internal discovery tools for the full catalog.
| Tool group | Tools |
|---|---|
| Memory session protocol | load_memory, save_fact, search_memory, save_identity, save_session |
| Signals and Boardroom coordination | check_signals, read_messages, post_message, create_todo, list_todos, update_todo, complete_todo, create_idea, list_ideas, vote_on_idea, promote_idea_to_todo |
| Hidden internal catalog tools | unclick_search, unclick_browse, unclick_tool_info, unclick_call |
The agent starts with memory, uses direct Boardroom tools for coordination, and can still call the hidden catalog tools by name when it needs dynamic endpoint discovery.
get_startup_context -> load_memory, write_session_summary -> save_session, add_fact -> save_fact, set_business_context -> save_identity.ListTools and are called through unclick_call with endpoint_id: "memory.<op>" (for example memory.manage_decay, memory.store_code, memory.log_conversation, memory.supersede_fact, memory.upsert_library_doc).Set your key as an environment variable:
UNCLICK_API_KEY=your_key_here
Or pass it via the MCP config:
{
"mcpServers": {
"unclick": {
"command": "npx",
"args": ["-y", "https://github.com/malamutemayhem/unclick/releases/latest/download/unclick.tgz"],
"env": {
"UNCLICK_API_KEY": "your_key_here"
}
}
}
}
Full catalog, docs, and API keys at unclick.world.