Skip to main content
Glama

Claude TypeScript MCP Servers

by ukkz
{ "compilerOptions": { // ターゲットとモジュール設定 "target": "ES2022", "module": "ESNext", "moduleResolution": "bundler", "lib": ["ES2022", "DOM", "DOM.Iterable"], // 厳格な型チェック "strict": true, "noImplicitAny": true, "strictNullChecks": true, "strictFunctionTypes": true, "strictBindCallApply": true, "strictPropertyInitialization": true, "noImplicitThis": true, "alwaysStrict": true, // 追加のチェック "noUnusedLocals": true, "noUnusedParameters": true, "noImplicitReturns": true, "noFallthroughCasesInSwitch": true, "noUncheckedIndexedAccess": true, // モジュール関連 "esModuleInterop": true, "allowSyntheticDefaultImports": true, "resolveJsonModule": true, "isolatedModules": true, // 出力設定(型チェックのみなのでnoEmit) "noEmit": true, "skipLibCheck": true, "forceConsistentCasingInFileNames": true, // Bunとの互換性 "types": ["bun", "node"], "allowJs": false, "checkJs": false }, "include": ["src/**/*.ts"], "exclude": ["node_modules", "dist", "build"] }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ukkz/claude-ts-mcps'

If you have feedback or need assistance with the MCP directory API, please join our Discord server