Cyeam MCP 编程助手

10 秒接入,效率翻倍! 这里是一个免费的 MCP 编程工具集,专为 Claude、Cursor、Windsurf 等 AI 编辑器设计。无需安装,SSE 直连,即刻拥有 9+ 实用开发工具 + 2 组 AI Prompt + 实时 Go 博客资源

编程工具(SSE)

{
    "mcpServers": {
        "json_to_thrift": {
            "timeout": 60,
            "url": "https://cyeam-wiki-mcp-production.up.railway.app/mcp",
            "transportType": "sse",
            "disabled": false
        }
    }
}

Tools

  • wiki_query

    Query the personal knowledge wiki using its native query logic. Reads index, backlinks, and 3-8 relevant articles to synthesize an answer. Must pass parameters as a JSON object with the exact field names listed below.

  • wiki_get_article

    Read a specific wiki article by name or path. Must pass parameters as a JSON object with the exact field name 'name'.

  • wiki_search_index

    Search the wiki index by keyword. Must pass parameters as a JSON object with the exact field name 'keyword'.

  • wiki_get_graph

    Return the knowledge graph image of the wiki. Optionally filter by a query to show only related articles and their neighbors. All parameters must be passed as a JSON object with the exact field names listed below.

  • tech_news

    Get daily technical news from RSS feeds

  • curl

    Execute HTTP requests. Allowed URLs: wttr.in/, https://api.open-meteo.com/v1/forecast

Prompts

  • wiki_query_system

    System prompt for wiki query assistant

  • tech_news_prompt

    Summarize the latest news through LLM

  • skill_weather

    weather — Get current weather and forecasts (no API key required).

Resources

  • Wiki Index

    The master index of all wiki articles

    wiki://index
  • Wiki Backlinks

    Reverse link index between wiki articles

    wiki://backlinks
  • Wiki Knowledge Graph

    Visual graph of wiki article relationships

    wiki://graph

Cloudinary(stdio)

  • cloud Cloudinary的云名称。
  • key Cloudinary的API密钥。
  • secret Cloudinary的API密钥密码。
go install gitee.com/cyeam/cloudinary_mcp@latest

{
    "mcpServers": {
        "image_upload": {
            "type": "stdio",
            "command": "cloudinary",
            "args": [],
            "env": {
                "cloud": "cyeam",
                "key": "key",
                "secret": "password"
            }
        }
    }
}

Feedback