MCPcopy
hub / github.com/claude-code-best/claude-code / sendTyping

Function sendTyping

packages/weixin/src/api.ts:137–148  ·  view source on GitHub ↗
(
  baseUrl: string,
  token: string,
  req: Omit<SendTypingReq, 'base_info'>,
)

Source from the content-addressed store, hash-verified

135}
136
137export async function sendTyping(
138 baseUrl: string,
139 token: string,
140 req: Omit<SendTypingReq, 'base_info'>,
141): Promise<SendTypingResp> {
142 return post<SendTypingResp>(
143 baseUrl,
144 '/ilink/bot/sendtyping',
145 { ...req, base_info: baseInfo() },
146 token,
147 )
148}

Callers 1

createWeixinMcpServerFunction · 0.85

Calls 2

postFunction · 0.85
baseInfoFunction · 0.85

Tested by

no test coverage detected