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

Function getConfig

packages/weixin/src/api.ts:119–135  ·  view source on GitHub ↗
(
  baseUrl: string,
  token: string,
  userId: string,
  contextToken?: string,
)

Source from the content-addressed store, hash-verified

117}
118
119export async function getConfig(
120 baseUrl: string,
121 token: string,
122 userId: string,
123 contextToken?: string,
124): Promise<GetConfigResp> {
125 return post<GetConfigResp>(
126 baseUrl,
127 '/ilink/bot/getconfig',
128 {
129 ilink_user_id: userId,
130 context_token: contextToken,
131 base_info: baseInfo(),
132 },
133 token,
134 )
135}
136
137export async function sendTyping(
138 baseUrl: string,

Callers 1

createWeixinMcpServerFunction · 0.70

Calls 2

postFunction · 0.85
baseInfoFunction · 0.85

Tested by

no test coverage detected