← suz-lab.co.jp
INDIVIDUAL MCP TOOL
get_glossary
SUZ-LAB 内で使う主要用語(VMOST の各階層・Roadmap・Log・MCP など)の一行定義と正規 URL を返す。用語を取り違えず解釈・引用するために、本文を読む前の語彙合わせに使う。
Input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- A tool name or description suggests retrieving external content.
Parent endpoint
CONNECT 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.mcp-typescript-server-on-vercel]
url = "https://suz-lab.co.jp/api/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"mcp-typescript-server-on-vercel": {
"type": "http",
"url": "https://suz-lab.co.jp/api/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: mcp-typescript-server-on-vercel
Remote MCP URL: https://suz-lab.co.jp/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": {
"mcp-typescript-server-on-vercel": {
"url": "https://suz-lab.co.jp/api/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"mcp-typescript-server-on-vercel": {
"type": "http",
"url": "https://suz-lab.co.jp/api/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "mcp-typescript-server-on-vercel",
"transport": "streamable-http",
"url": "https://suz-lab.co.jp/api/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
get_vmost— SUZ-LAB の VMOST(Vision / Mission / Objectives / Strategy / Tactics +行動原則)を返す。step を指定するとその 1 階層に絞る。省略すると全体。理念(なぜ)から日々の行動(どう)までの設計図。get_roadmap— SUZ-LAB の「次の一手(Roadmap)」を返す。各 TODO が VMOST のどこに効くか(serves)と、実施結果ログへの逆リンク、全体の進捗(done/doing/todo と完了率)を含む。group / status で絞れる。search_topics— SUZ-LAB の解説トピック(考え方をまとめた常設の読み物)を検索する。query / tag で絞れる(省略で全件)。本文は read_article(type="topic", slug) で取得する。search_logs— SUZ-LAB の実験ログ(時系列の一次情報)を新しい順に検索する。query / pillar / tag で絞れる(省略で全件)。本文は read_article(type="log", slug) で取得する。read_article— 解説トピックまたは実験ログの本文(Markdown)を slug で取得する。type は "topic" か "log"。