npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@friday-ai-codes/mcp

v0.1.0

Published

Friday AI MCP server — expose Friday code intelligence, Graph RAG, coding plan and MR tools to Cursor / Claude Code / Codex via Model Context Protocol

Readme

@friday-ai-codes/mcp

Friday AI 的 MCP(Model Context Protocol)server。把 Friday 的代码索引、Graph RAG、编码计划与 PR / MR 工具暴露给 Cursor / Claude Code / Codex 等 AI 编码助手。

配置(一条命令)

在 Friday Web 控制台「个人资料 → 访问令牌」创建 PAT(明文只显示一次),然后:

npx -y @friday-ai-codes/mcp setup

交互式中文向导一条龙:凭证问答 → 自动注册进本机 agent → 连通性测速(延迟 ms 高亮)→ 能力演示(随机介绍一个已索引仓库)。

脚本 / CI 场景用命令式 init

npx -y @friday-ai-codes/mcp init --base-url https://friday.example.com --token <你的访问令牌>

配置写入 ~/.friday/config.json(权限 0600)。也可以用环境变量 FRIDAY_BASE_URL / FRIDAY_ACCESS_TOKEN 覆盖。

注册到 IDE

一条命令,自动探测已安装的 agent 并幂等注册:

npx -y @friday-ai-codes/mcp register
  • Cursor:写入 ~/.cursor/mcp.json--project 时写 ./.cursor/mcp.json
  • Claude Code:执行 claude mcp add friday -- npx -y @friday-ai-codes/mcp
  • Codex:追加 [mcp_servers.friday]~/.codex/config.toml

只新增 friday 条目,不覆盖既有配置;已注册则跳过。用 --agent cursor|claude-code|codex(可重复)指定目标,--all 注册全部。

命令

| 命令 | 作用 | | --- | --- | | friday-mcp(无参数) | 启动 stdio MCP server | | friday-mcp setup | 交互式中文向导:凭证 → 注册 → 测速 → 能力演示 | | friday-mcp init | 写入配置(带 --base-url / --token 为命令式,否则交互式问答) | | friday-mcp register [--agent <name>] [--all] [--project] | 把 friday MCP server 注册进 agent 配置(幂等) | | friday-mcp doctor | 检查配置、注册状态与连通性测速(不回显令牌) |

工具集

23 个工具,对应 Friday /api/mcp/tools/* 端点:仓库发现(route_repositories)、Graph RAG 检索(search_rag_chunksfind_related_chunks)、精确文本检索(grep_repository)、仓库浏览(get_repository / list_repository_files / get_repository_file)、分析与计划(analyze_repository / create_coding_plan / improve_coding_plan)、执行与 MR(execute_coding_plan / get_coding_execution / summarize_branch / create_merge_request)、飞书工作项(get_feishu_work_item_context / create_feishu_technical_plan / create_work_item_repo_tasks / execute_work_item_repo_tasks)、学习案例(create_learning_case / search_learning_cases)、交付知识图谱(search_delivery_knowledge / get_entity_timeline / get_related_entities)。

每个工具都带 MCP 标准 annotations(中文 title 按「阶段 · 动作」分组 + readOnlyHint / idempotentHint / openWorldHint 行为提示)。

配合 Friday AI skills(4 个技能:friday / friday-code / friday-feishu / friday-memory)使用效果最佳,一键全装:

npx @friday-ai-codes/skills

License

MIT