app.json•1.19 kB
{
"name": "Exa MCP Server",
"description": "A Model Context Protocol server with Exa for web search, academic paper search, and Twitter/X.com search",
"repository": "https://github.com/dsouza-anush/exa-mcp-server-heroku",
"keywords": ["mcp", "search", "websearch", "exa", "claude", "ai", "research", "papers", "linkedin"],
"success_url": "/",
"env": {
"EXA_API_KEY": {
"description": "Your Exa API key from dashboard.exa.ai/api-keys",
"required": true
},
"ENABLED_TOOLS": {
"description": "Comma-separated list of tools to enable. Leave blank for all tools.",
"required": false,
"value": "web_search_exa,company_research_exa,crawling_exa,linkedin_search_exa,deep_researcher_start,deep_researcher_check"
},
"DEBUG": {
"description": "Enable debug logging",
"required": false,
"value": "false"
}
},
"formation": [
{
"type": "web",
"quantity": 0,
"size": "basic"
},
{
"type": "mcp-search-exa",
"quantity": 0,
"size": "basic"
}
],
"buildpacks": [
{
"url": "heroku/nodejs"
}
],
"scripts": {
"postdeploy": "npm run build:stdio"
}
}