(key: string)
| 155 | * @see https://modelcontextprotocol.io/specification/2025-06-18/basic/index#meta |
| 156 | */ |
| 157 | export const hasValidMetaName = (key: string): boolean => { |
| 158 | const name = extractMetaName(key); |
| 159 | if (!name) return false; |
| 160 | |
| 161 | return META_NAME_REGEX.test(name); |
| 162 | }; |
no test coverage detected
searching dependent graphs…