Skip to main content
Glama

research-publish

Markdown形式のAI研究エントリをConvexの aiResearch テーブルに公開するためのMCPサーバーです。

サーバーは起動時に環境が固定されます:

  • -dev は、開発用デプロイ資格情報にサーバーをバインドします。

  • -prod は、本番用デプロイ資格情報にサーバーをバインドします。

MCPホストは、ターゲットとなるデプロイ先の .convex.site URLと書き込みキーを環境変数経由で提供する必要があります。

必要なバックエンドコントラクト

このMCPは、以下の保護されたConvex HTTPエンドポイントを想定しています:

  • POST /studio/ai-research

リクエストボディ:

{
  "title": "Release notes",
  "body": "# Heading\n\nMarkdown body",
  "model": "gpt-5.4",
  "prompt": "Summarize the migration plan"
}

環境変数

  • CONVEX_SITE_URL

  • CONVEX_WRITE_KEY

オプション:

  • CONVEX_PUBLISH_PATH デフォルトは /studio/ai-research

MCPホスト設定例

{
  "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
-
security - not tested
A
license - permissive license
-
quality - not tested

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/NarukeAlpha/RP-MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server