Glama
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Glama
MCP
Servers
systemprompt-mcp-interview
by
Ejb503
Verified
npm
GitHub
Communication
Speech Processing
Education & Learning Tools
TypeScript
6
3
Reddit
Discord
Overview
Inspect
New
Schema
Related Servers
Reviews
Score
Need Help?
View Source Code
Report Issue
systemprompt-mcp-interview
config
src
.babelrc
CHANGELOG.md
.env.example
eslint.config.js
.eslintrc.json
.gitignore
jest.config.mjs
jest.setup.ts
LICENSE.md
package.json
package-lock.json
.prettierrc
README.md
tsconfig.json
tsconfig.test.json
{ "env": { "node": true, "es2022": true }, "extends": [ "eslint:recommended", "plugin:@typescript-eslint/recommended", "plugin:@typescript-eslint/recommended-requiring-type-checking", "prettier" ], "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaVersion": "latest", "sourceType": "module", "project": "./tsconfig.json" }, "plugins": ["@typescript-eslint", "prettier"], "rules": { "prettier/prettier": "error", "@typescript-eslint/explicit-function-return-type": "error", "@typescript-eslint/no-explicit-any": "error", "@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }], "no-console": ["warn", { "allow": ["warn", "error"] }] }, "overrides": [ { "files": ["**/*.test.ts", "**/*.test.tsx", "**/__tests__/**/*.ts", "**/__mocks__/**/*.ts"], "rules": { "@typescript-eslint/no-explicit-any": "off", "@typescript-eslint/ban-ts-comment": "off", "@typescript-eslint/no-unsafe-assignment": "off", "@typescript-eslint/no-unsafe-member-access": "off", "@typescript-eslint/no-unsafe-call": "off", "@typescript-eslint/no-unsafe-return": "off" } } ] }