C
Anthropic
Claude 연결
- 1Claude Desktop 또는 Claude.ai를 열고 Settings → MCP 메뉴로 이동
- 2「Add new MCP server」 클릭
- 3아래 설정을 복사 → 붙여넣기 후 OAuth로 로그인
claude_desktop_config.json
{
"mcpServers": {
"infls": {
"url": "https://infls.ai/api/mcp",
"auth": { "type": "oauth" }
}
}
}터미널 (Claude CLI)
claude mcp add infls \ --url https://infls.ai/api/mcp \ --auth oauth
G
OpenAI
ChatGPT 연결
- 1ChatGPT의 MCP Connector 또는 Custom GPT 설정을 엽니다
- 2https://infls.ai/api/mcp 를 서버 URL로 입력합니다
- 3OAuth 인증 후 검색·비교 중심 도구부터 연결합니다
MCP connector
# ChatGPT MCP Connector server_url: https://infls.ai/api/mcp auth: OAuth status: connector beta; OpenAPI import URL will be announced after release
⌘
Anysphere
Cursor 연결
- 1프로젝트 루트에 .cursor/mcp.json 생성
- 2아래 내용 붙여넣기 → Cursor 재시작
- 3Cmd+L 열고 「@infls로 인플 추천해줘」
.cursor/mcp.json
// .cursor/mcp.json
{
"mcpServers": {
"infls": {
"url": "https://infls.ai/api/mcp",
"auth": { "type": "oauth" }
}
}
}G
Google
Gemini 연결
- 1Gemini CLI 또는 Code Assist 설치
- 2아래 명령어 실행 → 브라우저에서 OAuth 인증
- 3Gemini에 「인플즈로 검색해줘」 입력
Gemini CLI
gemini mcp add infls \ --transport streamable-http \ --url https://infls.ai/api/mcp \ --auth oauth
