Skip to main content
Glama
Uroboros1205

Prismfy MCP Server

by Uroboros1205
README.md
# Prismfy MCP Server

An MCP server that gives compatible agent hosts two Prismfy Search API tools:

- `prismfy_search` — web search with optional engine, language, time-range, domain, and page filters;
- `prismfy_quota` — current tier and quota information.

It uses the official MCP TypeScript server SDK and communicates over stdio, so a
host starts and owns the process locally. API credentials remain in the host
environment and are never written to the repository.

## Install

```bash
npm install
npm run build
export PRISMFY_API_KEY="your_key_here"
node dist/index.js
```

## Example host configuration

```json
{
  "mcpServers": {
    "prismfy": {
      "command": "node",
      "args": ["/absolute/path/to/prismfy-mcp/dist/index.js"],
      "env": { "PRISMFY_API_KEY": "your_key_here" }
    }
  }
}
```

## Development

```bash
npm install
npm run check
npm test
```

`npm test` uses a mock HTTP client and makes no live Prismfy API request.

## Security

The server reads its key only from `PRISMFY_API_KEY`. It writes protocol output
only to stdout and diagnostics only to stderr, keeping the stdio MCP channel
valid. Do not commit `.env` files or put keys in host configuration tracked by Git.

## License

[MIT](LICENSE)

TDQS

A3.5/5.0

Scored across 2 tools

Disambiguation5/5

The two tools are clearly distinct: one performs web searches, the other checks quota status. No overlapping functionality or ambiguity in purpose.

Naming Consistency5/5

Both tools follow a consistent pattern with the 'prismfy_' prefix and lowercase_snake_case. Names clearly indicate action (search) and resource (quota), maintaining uniformity.

Tool Count3/5

With only two tools, the server feels thin for a search service, but it covers the essential operations (search and quota). This aligns with the borderline range where tools are minimal yet purposeful.

Completeness4/5

The core search and quota tracking are covered, but advanced features like pagination, result filtering, or search history are absent. These are minor gaps that agents can work around for basic use cases.

Maintenance

ActivityMaintained
ResponsivenessNo issues