Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"kansei-link": {
"args": [
"@kansei-link/mcp-server"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Intelligence layer for discovering and orchestrating Japanese SaaS MCP tools (AEO)
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@kansei-link/mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @kansei-link/mcp-server against OSV.dev.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in search / marketing
Web and local search using Brave Search API
Production ready MCP server with real-time search, extract, map & crawl.
Multi-engine MCP server, CLI, and local daemon for agent web search and content retrieval — skill-guided workflows, no API keys.
MCP server for Firecrawl — search, scrape, and interact with the web. Supports both cloud and self-hosted instances. Features include web search, scraping, page interaction, batch processing, and LLM-powered content analysis.
MCP Security Weekly
Get CVE alerts and security updates for Kansei MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
The intelligence layer for the Agent Economy. Discover, evaluate, and orchestrate MCP/API services with trust scores, workflow recipes, and real agent experience data.
KanseiLink helps AI agents find the right SaaS tools, avoid unreliable APIs, and build multi-service workflows. Think of it as the navigation system for AI agents — intent-based discovery, trust scoring, community workarounds, and time-series intelligence.
npx @kansei-link/mcp-server
Or add to your MCP client config:
{
"mcpServers": {
"kansei-link": {
"command": "npx",
"args": ["@kansei-link/mcp-server"]
}
}
}
Installing the MCP alone doesn't teach Claude Code when to call search_services / get_service_tips. The bundled skill fixes that:
npx -y @kansei-link/mcp-server kansei-link-install-skill
This copies a SKILL.md to ~/.claude/skills/kansei-link/. Claude Code auto-discovers it and fires the skill on phrases like "freeeで請求書作りたい", "勤怠管理のSaaS探して", "Slack MCPある?" — no need to say "use KanseiLink".
Flags: --dry-run, --force, --help.
report_outcomeAgents tend to forget calling report_outcome even when the skill reminds them — constructing the payload is friction. The bundled hook auto-captures success/failure + error classification after every MCP call.
Add to ~/.claude/settings.json:
{
"hooks": {
"PostToolUse": [
{
"matcher": "mcp__.*",
"hooks": [
{ "type": "command", "command": "npx -y @kansei-link/mcp-server kansei-link-report-hook" }
]
}
]
}
}
Behavior:
mcp__<server>__<tool> to derive service_id, task_type/api/report-outcome (the hosted KanseiLink facade by default)~/.kansei-link/hook.logDisable without editing settings: export KANSEI_REPORT_HOOK=off
Override endpoint (local dev): export KANSEI_ENDPOINT=http://localhost:3000/api/report-outcome
| Tool | Description |
|---|---|
search_services | Find services by intent with 3-way search (FTS5 + trigram + category boost) |
get_service_detail | Full API guide: auth, endpoints, rate limits, quickstart, agent tips |
get_service_tips | Practical tips: auth setup, common pitfalls, agent workarounds |
get_recipe | Workflow patterns combining multiple services |
find_combinations | Reverse lookup — find recipes containing a specific service |
check_updates | Recent changes and breaking updates for a service |
| Tool | Description |
|---|---|
report_outcome | Share your experience (auto PII masking, tokens + cost tracking) |
| `g |