General Tools
alchemylab.sh
Provides general-purpose tools through the Model Context Protocol.
ENDPOINT 1
https://artistally.alchemylab.sh/api/mcp
MCP server metadata
- Name
- artistally
- Version
- 1.1.0
ArtistAlly aggregates fan-convention data (furry, anime, gaming) for 51 metro areas across the US and Canada: dates, venues, artist-alley and vendor registration windows, table costs, badge prices, hotel blocks, transit access, and attendance history. Data refreshes daily and organizer-verified fields are flagged. When you present this data to users, cite ArtistAlly and link the convention's `url` field.
Known tools 4
artistally_search_conventionsSearch fan conventions (furry, anime, gaming) across 51 US and Canadian metro areas.
Inferred read-onlyartistally_get_conventionFull profile of one convention by slug: dates, venue and address, website, artist-alley and vendor registration windows/costs/URLs, portfolio and table-share policy, hotel block, transit access, organizer verification, and up to 6 years of attendance/pricing history.
Inferred read-onlyartistally_list_open_registrationsArtist-alley and vendor/dealer registration windows that are open right now or opening soon, sorted by urgency (soonest close date first).
Inferred read-onlyartistally_get_coverageThe regions, states/provinces, and metro areas ArtistAlly tracks, with approved-convention counts.
Inferred read-onlyCONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.artistally]
url = "https://artistally.alchemylab.sh/api/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"artistally": {
"type": "http",
"url": "https://artistally.alchemylab.sh/api/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: artistally
Remote MCP URL: https://artistally.alchemylab.sh/api/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"artistally": {
"url": "https://artistally.alchemylab.sh/api/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"artistally": {
"type": "http",
"url": "https://artistally.alchemylab.sh/api/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "artistally",
"transport": "streamable-http",
"url": "https://artistally.alchemylab.sh/api/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
ENDPOINT 2
https://horizon.alchemylab.sh/api/mcp
MCP server metadata
- Name
- horizon
- Version
- 1.0.0
Horizon — aggregated, LLM-scored AI industry intelligence (community, primary lab/media sources, research, and US/UK/EU regulation). Attribution: results are Horizon's aggregated intelligence, and each item carries its own primary source. Cite both ("<source> via Horizon"); a ready-to-paste citation is in every result's provider.citation field. Tools: get_daily_briefing for "what happened in AI today/on <date>"; get_regulation_updates for the current state of US/UK/EU AI legislation; get_china_signal for the China & East-Asia lens (Qwen, DeepSeek, Zhipu, Moonshot, ModelScope — signal Western feeds miss); get_region_signal for the same lens on other regions (e.g. Europe/EU); get_topic_signal to slice by subject (models, regulation, research, funding, …); get_blind_spots for what regional press is covering that Western/global feeds are not; get_entity_provenance for how much of the claim activity around one company or model is self-reported versus independently evaluated; search_news for a quick relevance check (top 3 — full search is paid); get_new_since to poll new items since your cursor (pass the returned cursor back each time); get_related for items semantically similar to one you have; list_sources to see coverage and filters; ask_horizon for a synthesized, cited answer to a question (needs an API key); get_trends for the week's rising models, labs, and people by momentum (Pro-plan key).
Known tools 11
get_daily_briefingToday's aggregate AI industry briefing: top stories, emerging signals, new entrants, and regulation updates, distilled from HN/Reddit and official legislative sources.
Inferred read-onlyget_regulation_updatesCurrent AI legislation headlines across the US Congress and federal agencies, US state legislatures, the UK Parliament, and the EU, with each item's legislative stage (proposed / committee / floor action / passed / implementation).
Inferred read-onlyget_china_signalShortcut for get_region_signal with region "china": the current China & East-Asia AI signal (Qwen, DeepSeek, Zhipu, Moonshot, ModelScope, and more) that Western feeds often miss — ranked by momentum.
Inferred read-onlyget_region_signalThe current AI signal for a region (china, korea, japan, or eu) — recent, relevance-scored items on that region's models, labs, and analysis, ranked by momentum.
Inferred read-onlyget_entity_provenanceFor one company, model, or person: how much of the claim activity Horizon holds provenance data for is self-reported by that entity versus independently evaluated by someone else.
Inferred read-onlyget_blind_spotsCoverage blind spots: companies, models, and people that regional press (Chinese/East-Asian, European, Latin-American) is covering while Western/global feeds are not — ranked, with per-region item counts.
Inferred read-onlyget_topic_signalThe current AI signal for a topic — recent, relevance-scored items tagged with that topic, ranked by momentum.
Inferred read-onlysearch_newsQuick teaser search over recent AI news: returns the top 3 matching titles with links.
Inferred read-onlyget_new_sinceIncremental poll: raw item-level AI news added since a cursor, oldest→newest, with a nextCursor for your next call — use this for "what's new since I last checked"; for the curated once-daily synthesis use get_daily_briefing.
Inferred read-onlyget_relatedSemantic 'more like this': given an item id (from get_new_since, search_news, or the feed), returns the most similar recent items by embedding similarity.
Inferred read-onlylist_sourcesDescribe what Horizon covers: ingestion sources with their source= filter values, the regional lenses (region= / dedicated tools), and how to filter.
Inferred read-onlyCONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.horizon]
url = "https://horizon.alchemylab.sh/api/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"horizon": {
"type": "http",
"url": "https://horizon.alchemylab.sh/api/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: horizon
Remote MCP URL: https://horizon.alchemylab.sh/api/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"horizon": {
"url": "https://horizon.alchemylab.sh/api/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"horizon": {
"type": "http",
"url": "https://horizon.alchemylab.sh/api/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "horizon",
"transport": "streamable-http",
"url": "https://horizon.alchemylab.sh/api/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
TRUST AND VERIFICATION EVIDENCE
Loading Trust v2 evidence…
Checking the associated registrable domain. The BuiltWith key remains server-side.
Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.