- Home
- MCP servers
- Alayman
Alayman
- typescript
0
GitHub Stars
typescript
Language
4 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"jenhsuan-alayman-mcp-ts": {
"command": "node",
"args": [
"/absolute/path/to/alayman-mcp-ts/build/index.js"
]
}
}
}You can run a lightweight MCP server locally that exposes access to alayman.io articles over a STDIO transport. This lets you query, filter, and paginate articles from a Claude Code-style MCP client in a fast, type-safe way without dealing with HTTP details directly.
How to use
You interact with the Alayman MCP Server from your MCP client by asking for article data. The server exposes a single tool named fetch-articles that retrieves articles from the alayman.io API with optional filtering and pagination. You can request all articles by default, or refine results with a search term, a limit, and an offset to page through results. The client automatically chooses this tool when you ask for articles, so you don’t need to invoke tools manually unless you are testing or building integrations.
How to install
Prerequisites you need before installation: Node.js and npm installed on your system.
Install dependencies for the MCP server.
Available tools
fetch-articles
Fetches articles from the alayman.io API with optional filtering and pagination.