We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sparesparrow/mcp-prompts'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
environment.json•844 B
{
"name": "MCP Prompts Development Environment",
"user": "node",
"install": "npm install",
"start": "npm run dev",
"env": {
"LOG_LEVEL": "debug"
},
"agentCanUpdateSnapshot": true,
"terminals": [
{
"name": "Development Server",
"command": "npm run dev",
"description": "Starts the MCP Prompts development server with hot reloading"
},
{
"name": "Test Runner",
"command": "npm test",
"description": "Runs the test suite to ensure code quality and functionality"
},
{
"name": "Type Check",
"command": "npm run type-check",
"description": "Performs TypeScript type checking across the codebase"
},
{
"name": "Linter",
"command": "npm run lint",
"description": "Runs ESLint to check for code style and quality issues"
}
]
}