streamable-httpMITupdated 2mo ago
Get a free API key from syracuse.1145.am - all you need to provide is your email address. Here is a curl command to do so:
Syracuse Company News で何ができる?
Syracuse Company New MCP Server
Installation notes
API Key
Get a free API key from syracuse.1145.am - all you need to provide is your email address. Here is a curl command to do so:
curl -X POST "https://syracuse.1145.am/api/v1/register-and-get-key/" \
-H "Content-Type: application/json" \
-d "{\"email\":\"your_email@example.com\"}"
You'll get a low usage level until you confirm the key, so make sure to use an email address that you have access to.
Using the MCP Server
There are 3 options:
- Run as a Local MCP Server (e.g. to connect with Claude Desktop)
- Connect via the Syracuse MCP server
- Run your own Remote MCP Server locally
To run as Local MCP Server
Pre-req: Install uv
- Clone this repo
- Copy
.env.sampleto.envand configure your MCP_SERVER_API_TOKEN with the API key you got above - Example claude_desktop_config.json
{
"mcpServers": {
"Syracuse Company News API": {
"command": "/path/to/uv",
"args": [
"--directory",
"/path/to/repo/syracuse-mcp-server",
"run",
"stdio_mcp_server.py"
]
}
}
}
To connect via Syracuse's MCP Server
There are no special pre-requisites
Connect to https://syracuse.1145.am/mcp and provide your key as part of the authorization
MCP doc is at https://syracuse.1145.am/.well-known/mcp.json
Running your own Remote MCP Server
If, for some reason, you want to run your own local MCP server then that is also possible. Again, it expects uv.
You don't need to update your key in the .env file, but you do need to:
- Clone this repo
- Copy
.env.sampleto.env- though any further configuration is not needed - Run it with
uv run stateless_streaming_http_mcp_server.py
Connection info for MCP Inspector:
- Transport Type: Streamable HTTP
- URL: host:port/mcp, e.g.
http://127.0.0.1:9000/mcp - Anyone making calls that require authorization will need to add their API key in the Authentication section
The Stateless Streaming MCP Server also serves an mcp.json at .well-known/mcp.json (in this example it would be http://127.0.0.1/.well-known/mcp.json )
Allowed tools
By default the ALLOWED_TOOLS restricts the MCP server to the minimum needed to register accounts and get stories:
- register_and_get_key
- location_groups_list
- stories_industry_location_list
- stories_organization_list
There's no problem to allow all tools - if you'd like to experiment simply remove ALLOWED_TOOLS from .env
Distinguishing tools that need auth
Each tool is tagged with whether it requires authentication, derived from the OpenAPI security rules (an operation's security overrides the spec-level security, and an explicit empty security: [] means no auth). This is exposed two ways:
- In
tools/list, each tool carries_meta: { "requiresAuth": true | false }. - In
.well-known/mcp.json, the same_metaflag is present, and thesecurityblock is only attached to tools that actually require auth.
Clients can use this to call public endpoints without prompting the user for a token, and only request credentials for tools that need them.
インストール
Syracuse Company News をクライアントに追加します。お使いのものを選んでください。
claude mcp add --transport http syracuse-company-news https://syracuse.1145.am/mcp/codex mcp add syracuse-company-news --url https://syracuse.1145.am/mcp/{
"mcpServers": {
"syracuse-company-news": {
"url": "https://syracuse.1145.am/mcp/"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"syracuse-company-news": {
"type": "http",
"url": "https://syracuse.1145.am/mcp/"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"syracuse-company-news": {
"url": "https://syracuse.1145.am/mcp/"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"syracuse-company-news": {
"serverUrl": "https://syracuse.1145.am/mcp/"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
スコア
39 / 100
情報不足
- ドキュメント22/25
- メンテナンス16/25
- 信頼性16/20
- 機能0/15
- 導入のしやすさ12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 60 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
バージョン履歴
| バージョン | 公開日 |
|---|---|
| 1.2.0最新 | 2026年6月4日 |