Published NFT Literature MCP Server

Published NFT Literature MCP Server

Enables AI assistants to access Published NFT documentation, NFT collections, Flow blockchain info, pricing, and other literary marketplace data through MCP tools.

Category
Visit Server

README

Published NFT — Literature MCP Server

Open-source Model Context Protocol-style knowledge-base server for Published NFT — the Flow-blockchain marketplace for books and literary NFTs. It gives AI assistants (Claude, Cursor, and any MCP/REST client) real-time access to the Published NFT documentation, NFT collections, Flow blockchain education, pricing, bookmarks, decorations, and the Published Daily newspaper.

This is the runnable, framework-agnostic extraction of the server hosted at https://publishednft.io/api/mcp (which powers the "Cindy" voice agent).

Tools

Tool What it does
searchDocumentation Full-text search across the bundled docs (relevance-ranked).
getCollectionInfo Details for an NFT collection (Genesis Pass, BOAST6, classics, …).
getFlowBlockchainInfo Flow blockchain concepts — Cadence, FCL, wallets, testnet/mainnet.
getPricingInfo Current prices and payment methods (DUC / FLOW / USD).
getBookmarksInfo Literary bookmark NFTs and their traits.
getDecorationsInfo Avatar decorations (frames, stamps, spines, bookplates).
getAppFeaturesInfo Platform features (VR/AR reading, EPUB reader, AI assistant, …).
getNewspaperInfo The Published Daily on-chain newspaper.

Transport (REST)

GET  /   → health check + tool list
POST /   → { "tool": "<name>", "args": { ... } }  → { success, tool, result }

Both { "tool", "args" } and { "name", "arguments" } request shapes are accepted.

Run it

Requires Node ≥ 18.

git clone https://github.com/publishednft/mcp-literature-server.git
cd mcp-literature-server
npm install
npm start            # tsx src/server.ts  → http://localhost:8000
# or build + serve
npm run build && npm run serve
# Health
curl http://localhost:8000

# Search
curl -X POST http://localhost:8000 \
  -H 'Content-Type: application/json' \
  -d '{ "tool": "searchDocumentation", "args": { "query": "genesis pass" } }'

# Pricing
curl -X POST http://localhost:8000 \
  -d '{ "tool": "getPricingInfo", "args": {} }'

PORT env var overrides the default 8000.

Use the hosted server (no install)

Point any MCP/SSE-capable client at the live endpoint:

https://publishednft.io/api/mcp?userId=YOUR_WALLET_ADDRESS

See the connect guide at https://publishednft.io/mcp.

Project layout

src/
  server.ts          # plain Node HTTP server (GET health / POST dispatch)
  tools/             # the 8 tool handlers + zod schemas
  utils/             # markdown loader, search index, helpers
docs/                # the literature knowledge base (markdown)

The only runtime dependency is zod (schema validation); everything else is Node builtins.

License

MIT © Published NFT

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured