MCP Integration Examples
LLMSE provides a public Model Context Protocol (MCP) server that allows AI assistants like Claude to classify websites and match advertisers. Below are examples and prompts you can try.
Quick Start
Add LLMSE to your AI assistant using the command line:
Claude Code
claude mcp add --transport http llmc-public https://llmse.ai/mcp
This adds the server to your local scope. Use --scope project to share with your team via .mcp.json.
Gemini CLI
gemini mcp add llmc-public https://llmse.ai/mcp --transport http
By default, the server is added to ~/.gemini/settings.json. Use --scope project for project-specific config.
OpenAI Codex
Edit ~/.codex/config.toml and add:
[mcp_servers.llmc-public]
url = "https://llmse.ai/mcp"
This configuration is shared between Codex CLI and the VSCode extension.
Available Tools
audit Tool
Performs a comprehensive website audit that combines classification, SEO analysis, and advertiser matching in a single efficient call. This is the recommended tool when you need a complete analysis since it fetches the page only once.
Parameters
Example Prompts
Response Structure
Why Use Audit?
classify_url Tool
Classifies a website URL and returns detailed information about its category, language, target audience, and sentiment.
Parameters
Example Prompts
Response Fields
select_advertiser Tool
Matches advertising networks to website demographics. Can work with a URL (fetches classification) or direct demographic parameters.
Parameters
Example Prompts - By URL
Example Prompts - By Demographics
Scoring Algorithm
Advertisers are scored based on demographic matches:
analyze_seo Tool
Analyzes a website URL for SEO issues and provides an overall score, letter grade, and actionable recommendations.
Parameters
Example Prompts
Response Fields
SEO Checks Performed
Advertising Networks
LLMSE includes 98 real advertising networks across 11 verticals:
Advanced Use Cases
Competitive Analysis
Ad Campaign Planning
Content Analysis
Bulk Operations
Technical Details
Back to Documentation
See the About page for general information about LLMSE, or visit Query Examples for web interface usage.