loading…
Search for a command to run...
loading…
MCP server for publishing markdown AI research entries to a Convex database. Supports both development and production environments with secure deployment creden
MCP server for publishing markdown AI research entries to a Convex database. Supports both development and production environments with secure deployment credentials.
MCP server for publishing markdown AI research entries into a Convex aiResearch table.
The server is environment-pinned at startup:
-dev binds the server to your dev deployment credentials.-prod binds the server to your prod deployment credentials.The MCP host should provide the target deployment's .convex.site URL and write key through environment variables.
This MCP expects a protected Convex HTTP endpoint at:
POST /studio/ai-researchRequest body:
{
"title": "Release notes",
"body": "# Heading\n\nMarkdown body",
"model": "gpt-5.4",
"prompt": "Summarize the migration plan"
}
CONVEX_SITE_URLCONVEX_WRITE_KEYOptional:
CONVEX_PUBLISH_PATH defaults to /studio/ai-research{
"mcpServers": {
"research-publish-dev": {
"command": "npx",
"args": ["-y", "research-publish", "-dev"],
"env": {
"CONVEX_SITE_URL": "https://your-dev-deployment.convex.site",
"CONVEX_WRITE_KEY": "your-dev-write-key"
}
},
"research-publish-prod": {
"command": "npx",
"args": ["-y", "research-publish", "-prod"],
"env": {
"CONVEX_SITE_URL": "https://your-prod-deployment.convex.site",
"CONVEX_WRITE_KEY": "your-prod-write-key"
}
}
}
}
npm install
npm run build
npm test
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"research-publish": {
"command": "npx",
"args": []
}
}
}