We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jordanburke/joplin-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import baseConfig from "ts-builds/eslint"
export default [
...baseConfig,
{
// Source files - relax any rules temporarily during migration
files: ["src/**/*.ts"],
rules: {
"@typescript-eslint/no-explicit-any": "warn",
},
},
{
// Test files - allow any types for mocking
files: ["**/__tests__/**/*.{ts,tsx}", "**/*.test.{ts,tsx}", "**/*.spec.{ts,tsx}"],
rules: {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-argument": "off",
"@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/no-unsafe-call": "off",
},
},
]