Skip to main content
Glama

Specif-ai MCP Server

by vj-presidio
13
  • Apple
  • Linux
import { Client } from '@modelcontextprotocol/sdk/client/index.js' import { StdioClientTransport } from '@modelcontextprotocol/sdk/client/stdio.js' const transport = new StdioClientTransport({ command: 'specif-ai-mcp-server', args: ['path/to/project/spec/files'], }) const client = new Client({ name: 'example-binary-client', version: '0.0.1', }) await client.connect(transport) const result = await client.callTool({ name: 'get-brds', arguments: {}, }) for (const content of result.content as Array<any>) { if (content.type === 'text') { console.log(content.text) } } await client.close() /* Expected output: ID: 1 Title: BRD 1 Description: This is the first BRD -------------- ID: 2 Title: BRD 2 Description: This is the second BRD -------------- ... ... ... */

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/vj-presidio/specif-ai-mcp-server-archive'

If you have feedback or need assistance with the MCP directory API, please join our Discord server