Connect your AI assistant to NewTqnia.
Use your own account’s API key to give ChatGPT, Claude, or any other MCP client direct access to NewTqnia’s published news, timelines, terminology, and explainers.
Authentication
Your own API key
Scope
Published content only
Protocol
MCP · Streamable HTTP
Step 1
Create an API key from your account
Sign in to NewTqnia, then from your account page create an API key and give it a name you’ll recognize (for example, ChatGPT). Copy the key immediately — the full value is shown only once.
Manage API keys →Step 2
Add NewTqnia as an MCP server
In any client that supports custom HTTP headers (Claude, most agent frameworks, and custom scripts), add the endpoint below along with your key header.
{
"mcpServers": {
"newtqnia": {
"url": "https://newtqnia.com/mcp",
"headers": { "X-API-Key": "ntq_…" }
}
}
}
If your client only offers a single “Bearer token” field and doesn’t allow custom headers, paste your key there instead — the server accepts the same key over the standard Authorization header.
Authorization: Bearer ntq_…
If your client requires signing in through OAuth instead (as some ChatGPT connector setups do), use the client’s “Sign in” option and log in with the same NewTqnia account. You’ll get the same published-content access without needing a key.
What can your assistant see?
Your personal key grants read-only access, in your language, to NewTqnia content: a title, a summary, and a link to read the full piece on the site — never the complete article text. Pass your preferred language as a locale parameter (en or ar) on every call. Your key cannot create, edit, or publish anything.
| Tool | What it returns |
|---|---|
| get_recent_news | Titles, summaries, and links for recently published articles. |
| get_news_by_id | A published article's summary by ID, with a link to the full text. |
| get_timeline_by_id | Summaries of a published timeline's events, with a link to the full page. |
| search_terminology | Published glossary terms with a link to the full definition. |
| search_explainers | Published explainer summaries with a link to the full explainer. |
| server_status | Server health check. |