Content
# Search Intent MCP
Please obtain an API key at https://aisearchintent.com
This is a search intent analysis service based on MCP (Model Context Protocol). It helps analyze the intent behind user search keywords, providing support for SEO analysis.
## Features
- Analyze the intent of search keywords
- Provide possible classifications
- Provide reasoning process
- Provide relevant reference links
- Provide search suggestions
## Usage
### claude Installation
```json
{
"mcpServers": {
"search_intent": {
"command": "npx",
"args": ["-y", "@search-intent/mcp"],
"env": {
"SEARCH_INTENT_API_KEY": "xxx"
}
}
}
}
```
## Development
```bash
# Clone the repository
git clone
# Install dependencies
pnpm install
# Set environment variable
export SEARCH_INTENT_API_KEY=your_api_key
```
## API Usage Example
The service provides a tool named `search_intent_analysis`, which can be used as follows:
```json
{
"name": "search_intent_analysis",
"arguments": {
"query": "grok3"
}
}
```
Example of returned result:
```json
{
"query": "grok3",
"intent": "Information Lookup about xAI's Grok 3...",
"possibleCategories": [
"AI Model",
"Technology",
"Chatbot",
"Product Information"
],
"reasoning": "The user is likely trying to understand...",
"references": [
{
"url": "https://example.com",
"title": "Example Title"
}
],
"searchSuggestions": [
"grok3 meaning",
"grok3 search intent",
"grok3 categories",
"grok3"
]
}
```
Connection Info
You Might Also Like
Filesystem
Model Context Protocol Servers
Sequential Thinking
Offers a structured approach to dynamic and reflective problem-solving,...
mcp-chrome
Chrome MCP Server is a Chrome extension-based Model Context Protocol (MCP)...
easy-code-reader
A powerful MCP (Model Context Protocol) server for intelligently reading...
strudel-mcp-server
A Model Context Protocol (MCP) server that gives Claude direct control over...
awesome-context-engineering
A curated list of awesome open-source libraries for context engineering...