We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/thesidshah/pokemon-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
{
"name": "example-mcp-server",
"version": "0.1.0",
"description": "Example MCP server with basic tools",
"type": "module",
"main": "index.js",
"bin": {
"example-mcp-server": "./index.js"
},
"scripts": {
"build": "tsc",
"mcp": "tsx index.ts",
"start": "tsx index.ts",
"dev": "tsx watch index.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.4.0",
"express": "^5.1.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"ts-node": "^10.9.2",
"tsx": "^4.20.3",
"typescript": "^5.0.0"
},
"keywords": [
"mcp",
"model-context-protocol",
"ai-tools"
],
"license": "MIT"
}